-
Notifications
You must be signed in to change notification settings - Fork 8
/
eleventh.css
72 lines (63 loc) · 1.14 KB
/
eleventh.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
.title {
position: absolute;
font-size: 40px;
margin-top: 150px;
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);
}
}
.class-eleventh {
text-align: center;
position: absolute;
margin-top: 180px;
margin-left: 380px;
font-size: 20px;
font-family: 'Muli', sans-serif;
text-transform: uppercase;
text-align: center;
color: #2980b9;
font-weight: bold;
}
.physics {
float: left;
margin: 50px;
border: 3px solid #8e44ad;
padding: 20px;
border-radius: 10px;
background: white;
}
.physics a {
text-decoration: none;
}
.chemistry {
float: right;
margin: 50px;
border: 3px solid #8e44ad;
padding: 20px;
border-radius: 10px;
background: white;
}
.chemistry a{
text-decoration: none;
}
.subject-icons {
height: 200px;
width: auto;
}