This repository has been archived by the owner on Jan 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsololearn.css
183 lines (160 loc) Β· 3.07 KB
/
sololearn.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
*{
margin:0;
padding:0;
box-sizing:border-box;
}
::selection{
color:white;
background-color:goldenrod;
}
html{
scroll-behavior: smooth;
}
body{
background-color:#212121;
}
header{
font-size:1.5rem;
color:white;
background-color:black;
padding:20px 0 20px 10px;
position:stiky;
line-height:100%;
font-variant:small-caps;
border-bottom:2px solid goldenrod;
}
/*0 - 100 counter*/
#count{
color:goldenrod;
text-align:center;
font-size:7rem;
display:block;
animation:glow 700ms infinite alternate;
text-shadow:0 0 10px goldenrod;
}
@keyframes glow{
to{
text-shadow:0 0 0 goldenrod;
}
}
.congoSection{
width:100vw;
display:flex;
flex-direction:column;
align-items:center;
}
#congoMessage{
white-space:pre-wrap;
font-size:2.5rem;
color:dodgerblue;
padding:5%;
text-align:center;
}
.arrows{
margin-top:5%;
stroke:dodgerblue;
stroke-width:4px;
fill:transparent;
width:60px;
opacity:0;
transition:opacity 2s;
animation:moveupdown 1s infinite alternate;
}
@keyframes moveupdown{
to{
transform:translateY(10px);
}
}
/*it's initially hidden*/
main{
opacity:0;
transition-delay:4s;
transition-duration:2s;
max-width:400px;
margin:auto;
}
#search-bar{
width:80%;
border:1px solid dodgerblue;
font-size:1.3em;
padding:15px;
outline:dodgerblue;
display:block;
margin:15px auto auto auto;
border-radius:10px;
background-color:#111111;
color:dodgerblue;
transition: all .4s;
caret-color:goldenrod;
}
.card{
height:90px;
display:flex;
flex-direction:row;
align-items:center;
margin:10% 7% 10% 7%;
box-sizing:border-box;
background-color:#313131;
background:
linear-gradient(
70deg,black,#313131);
border:1px solid steelblue;
border-left:6px ridge goldenrod;
border-radius:5px 5px 5px 5px;
transition: all .4s;
box-shadow:0 0 1px 1px dodgerblue;
}
.card:hover,#search-bar:hover{
transform:scale(1.1,1.1);
box-shadow:0 0 5px 5px dodgerblue;
}
.avtar{
border:5px outset goldenrod;
height:100px;
width:100px;
border-radius:50%;
background-color:#111111;
z-index:1;
}
.board{
border:2px solid goldenrod;
border-left:2px outset dodgerblue;
border-top:2px outset dodgerblue;
width:80%;
max-width:400px;
padding:1.3em;
font-size:1.3em;
background-color:#111111;
border-radius:3%;
}
#Thanks{
line-height:2rem;
margin:auto;/*aligns to center*/
color:white;
}
.textbig{
display:block;
font-size:2rem;
margin-bottom:1rem;
color:dodgerblue;
}
/*anch => anchor =>links*/
.anch{
font-weight:900;
display:block;
color:dodgerblue;
text-decoration:none;/*remove underline*/
}
footer{
display:flex;
flex-direction:row;
margin:15px auto 15px auto;
}
.logo{
height:50px;
width:50px;
border:2px solid dodgerblue;
border-radius:50%;
border-top-color:goldenrod;
border-bottom-color:goldenrod;
}