-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (50 loc) · 789 Bytes
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');
* {
font-family: 'Quicksand';
}
body {
background: #f2f2f2;
margin: 0;
}
.container {
width: 960px;
margin: 10px auto;
padding: 20px;
/* scroll stuff */
max-height: 80%;
box-sizing: border-box;
overflow: auto;
}
.container::-webkit-scrollbar {
display: none;
}
.card {
background: white;
padding: 10px 20px;
border-radius: 10px;
margin: 20px auto;
font-size: 1.2em;
}
.card h2 {
margin-bottom: 0;
}
.card p {
margin-top: 4px;
}
.load-more {
text-align: center;
display: none;
}
button {
margin-bottom: 40px;
font-size: 2em;
}
.loading {
display: none;
}
.loading.active {
display: block;
font-size: 2em;
text-align: center;
margin: 10px 0;
}