-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
63 lines (51 loc) · 915 Bytes
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
html, body{
font-family: 'Raleway', sans-serif;
}
* {
box-sizing: border-box;
}
a {
text-decoration: none;
color: inherit;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
.container {
width: 800px;
display: block;
margin: auto;
}
.container .title {
text-align: center;
margin-bottom: 2em;
}
#root {
text-align: center;
}
#root .easy-pagination {
width: 100%;
display: flex;
justify-content: space-between;
align-items: baseline;
}
#root .easy-pagination li{
width: 70px;
font-size: 1.5em;
cursor: pointer;
user-select: none;
padding: 8px 0;
background-color: beige;
}
#root .easy-pagination span {
user-select: none;
}
#root .easy-pagination li.active {
color: red;
}
#root .easy-pagination span {
margin-right: 1em;
}