-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.css
130 lines (128 loc) · 2.38 KB
/
about.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<style>
@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Libre+Franklin:wght@200&family=Merriweather:wght@300&family=Mukta:wght@200&family=Mulish:wght@200&family=Poppins:ital,wght@1,100&family=Roboto+Mono:ital,wght@1,100&family=Roboto:ital,wght@1,300&display=swap');
</style>
body{
margin:0px;
background-color:#dee1de;
}
header{
background:url('https://preview.colorlib.com/theme/cozastore/images/bg-01.jpg.webp') no-repeat center center/cover;
width:100%;
}
.navbar2{
background-color:transparent;
}
.navbar2 ul{
overflow:auto;
margin:0px;
}
.navbar2 li{
list-style:none;
float:left;
padding:20px;
font-size:20px;
}
.navbar2 li a{
text-decoration:none;
color:white;
}
.navbar2 li a:hover{
color:red;
}
header h1{
font-size:60px;
padding:40px 10px 80px 10px;
text-align:center;
color:white;
word-break: break-all;
}
.section{
display:flex;
padding:30px;
}
.content p{
font-family: 'Courgette', cursive;
font-family: 'Libre Franklin', sans-serif;
font-family: 'Merriweather', serif;
font-family: 'Mukta', sans-serif;
font-family: 'Mulish', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Mono', monospace;
font-size:21x;
}
@media(max-width:950px){
.section{
display:flex;
flex-direction:column;
}
.content {
display:flex;
}
.image-content{
max-width:100%;
height:auto;
}
.section img{
width:100%;
height:auto;
}
}
@media(max-width:600px){
.navbar2{
background-color:#595e5e;
}
}
.content{
padding-right:40px;
font-size:17px;
}
.terms{
background-color:#535362;
box-sizing:border-box;
display:grid;
grid-template-columns:1fr 1fr 1fr;
grid-gap:1rem;
grid-template-columns:repeat(auto-fill,minmax(100px,0.5fr));
grid-column-gap:10rem;
grid-row-gap:4rem;
}
#term1{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}
#term1 a{
display:block;
color:white;
padding:15px 0px 15px 25px;
text-decoration:none;
font-size:18px;
}
#term2{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}
#term2 a{
display:block;
font-size:18px;
padding:15px 0px 15px 25px;
color:white;
text-decoration:none;
}
#term3{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}
#term3 a{
display:block;
font-size:18px;
padding:15px 24px 29px 13px;
color:white;
text-decoration:none;
}