-
Notifications
You must be signed in to change notification settings - Fork 2
/
home.css
64 lines (57 loc) · 871 Bytes
/
home.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
.magenta {
color: #8f1fff;
}
.magenta::before {
content: "";
display: inline-block;
width: 0.9rem;
height: 0.9rem;
background-color: currentColor;
vertical-align: middle;
margin-right: 0.25rem;
}
ul {
padding-left: 0;
}
li {
position: relative;
list-style-type: none;
}
li .icons {
position: absolute;
right: 100%;
margin-right: 0.5rem;
width: 10rem;
text-align: right;
}
li .icons i {
margin-left: 0.5rem;
}
.right-image {
position: absolute;
left: 100%;
}
@media screen and (max-width: 1300px) {
.right-image {
position: static;
display: block;
margin: 0 auto;
max-width: 100%;
}
}
@media screen and (max-width: 1000px) {
li {
margin-bottom: 0.5rem;
}
li .icons {
position: static;
display: inline-block;
text-align: left;
width: auto;
margin-right: 0;
}
li .icons i {
margin-left: 0;
margin-right: 0.5rem;
}
}