-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathTphysics.css
More file actions
55 lines (48 loc) · 948 Bytes
/
Tphysics.css
File metadata and controls
55 lines (48 loc) · 948 Bytes
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
@import url('https://fonts.googleapis.com/css?family=Quicksand&display=swap');
.title {
position: absolute;
font-size: 40px;
margin-top: 150px;
margin-left: 500px;
text-align: right;
color: white;
font-family: 'Muli', sans-serif;
text-transform: uppercase;
font-weight: lighter;
letter-spacing: 2px;
}
.icons {
height: 50px;
width: auto;
}
.icons:hover {
animation: rotate-icons 1s infinite;
}
@keyframes rotate-icons {
0% {
transform: rotate(-20deg);
}
100% {
transform: rotate(20deg);
}
}
.chapter-list {
position: absolute;
margin-top: 200px;
margin-left: 550px;
font-size: 20px;
text-align: right;
}
.chapter-list ul {
list-style: none;
margin: 30px;
}
.chapter-list li {
margin: 20px;
}
.chapter-list li a {
text-decoration: none;
color: #fff;
letter-spacing: 2px;
font-family: 'Quicksand', sans-serif;
}