-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkids.css
166 lines (135 loc) · 3.62 KB
/
kids.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=PT+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@500&family=Montserrat:wght@500&family=PT+Sans&family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300&family=Inconsolata:wght@500&family=Montserrat:wght@500&family=PT+Sans&family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300&family=Inconsolata:wght@500&family=Montserrat:wght@500&family=PT+Sans&family=Raleway:wght@300&family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow&family=IBM+Plex+Sans:wght@300&family=Inconsolata:wght@500&family=Montserrat:wght@500&family=PT+Sans&family=Raleway:wght@300&family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow&family=IBM+Plex+Sans:wght@300&family=Inconsolata:wght@500&family=Montserrat:wght@500&family=PT+Sans&family=Poppins&family=Raleway:wght@300&family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow&family=Exo+2:wght@500&family=IBM+Plex+Sans:wght@300&family=Inconsolata:wght@500&family=Montserrat:wght@500&family=Noto+Sans:wght@300&family=PT+Sans&family=Poppins&family=Quicksand:wght@500&family=Raleway:wght@300;400&family=Sofia+Sans+Condensed&family=Ubuntu&display=swap');
body {
overflow-x: hidden;
overflow-y: scroll;
}
#Web-Head{
font-family: 'Montserrat', sans-serif;
font-size: 30px;
}
.nav-item a{
font-size: larger;
font-family: 'IBM Plex Sans', sans-serif;
}
.nav-item a:hover{
text-decoration:underline;
font-weight:400;
}
.loader{
position: sticky;
width: 100vw;
margin-top: 70px;
background-color: #2a2929;
height: 3px;
animation-name: loading;
animation-duration: 5s;
z-index: -1;
}
@keyframes loading{
0%{
background: red;
width:0px;
}
25%{
background: red;
width: 500px;
}
75%{
background: red;
width: 750px;
}
100%{
background-color: black;
}
}
.content{
/* display: none; */
position: absolute;
background: url(https://images.unsplash.com/photo-1601176682258-172d20729a0c?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1009&q=80);
background-size: cover;
background-repeat: no-repeat;
height: 125vh;
width: 100vw;
/* margin: 73px 0px; */
}
.info{
margin: 80px 40px 0px 40rem;
}
.info{
color: white;
padding: 50px;
}
.info p{
padding: 50px 0px;
}
.info button{
font-family: 'Exo 2', sans-serif;
}
section{
position: absolute;
color: black;
margin: 15px;
}
.card{
margin: 90px 0px;
}
.boys{
position: absolute;
height: 20px;
margin: 50rem 0rem;
display: flex;
flex-wrap: wrap;
width: 100vw;
justify-content: space-evenly;
}
.boys section hr{
width: 78rem;
color: black;
}
.girls{
display: flex;
flex-wrap: wrap;
position: absolute;
margin: 95rem 0rem;
justify-content: space-evenly;
width: 100vw;
}
.girls section hr{
width: 78rem;
color: black;
}
footer{
display: flex;
margin: 152rem 0rem 0rem 0rem;
flex-direction: column;
}
.footer-link{
display: flex;
}
.footer-info{
display: flex;
width: 100vw;
}
.row{
width: 35vw;
}
.dev{
font-family: 'IBM Plex Sans', sans-serif;
font-size: larger;
}
.dev i{
margin: 25px 10px;
height: 20px;
font-size: 30px;
}
.dev a i:hover{
cursor: pointer;
text-decoration: underline;
color: white;
}