-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
81 lines (68 loc) · 1.21 KB
/
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
:root {
--vp-c-yellow-4: #fef9c3;
--vp-c-yellow-5: #ffef89;
--vp-c-yellow-6: #ffe542;
}
img {
left: 0px;
right: 0px;
margin: auto;
margin-top: 30px;
margin-bottom: 30px;
}
img.avatar-img {
position: unset !important;
}
p.description {
font-size: 20px;
font-weight: 500;
line-height: 1.5;
color: var(--vp-c-text-1);
}
ul.intro {
background-color: var(--vp-c-bg-soft);
border-radius: 10px;
padding: 20px 20px 20px 40px;
}
ul.intro > li {
padding-left: 0px;
margin-top: 5px;
}
ul.intro > li:first-child {
font-size: 20px;
font-weight: 500;
margin-left: -20px;
margin-bottom: 20px;
}
ul.intro > li:first-child::marker {
content: "";
}
span.VPBadge.success {
border-color: #99e8ab;
color: #fff;
background-color: #28a745;
}
div.superpeer {
display: flex;
justify-content: space-between;
gap: 20px;
align-items: flex-start;
}
div.superpeer > a {
display: inline-block;
flex-grow: 1;
}
div.superpeer > a > img {
width: 100%;
margin: 0px !important;
border-radius: 10px;
transition: all 200ms;
}
div.superpeer > a > img:hover {
transform: scale(1.1) rotate(3deg);
}
@media only screen and (max-width: 600px) {
div.superpeer > a {
display: none;
}
}