-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtomas-custom-styles.css
90 lines (81 loc) · 2.06 KB
/
tomas-custom-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
82
83
84
85
86
87
88
89
90
.docs-links {
margin-bottom: 30px;
}
@media (min-width: 1024px) {
.docs-links {
padding-left: 32px;
flex: 0 0 312px;
}
.docs-links .docs-links-inner {
position: sticky;
top: 10px;
}
}
.docs-links h2 {
font-size: 18px;
line-height: 22px;
font-weight: 500;
color: #757575; /* Assuming $gray750Color is #757575 */
margin-bottom: 12px;
}
@media (max-width: 767px) {
.docs-links h2 {
margin-top: 0;
}
}
@media (min-width: 768px) {
.docs-links h2 {
margin-top: 10px;
}
}
.docs-link-group {
display: flex;
flex-direction: column;
align-items: flex-start;
margin-bottom: 4px;
}
.docs-link-group[data-type='tips']::before,
.docs-link-group[data-type='manuals']::before {
border-radius: 2px;
display: inline-block;
padding: 4px 8px;
font-size: 12px;
line-height: 15px;
font-weight: 600;
margin-bottom: 8px;
}
.docs-link-group a {
display: block;
margin-bottom: 8px;
padding: 12px 46px 12px 14px;
position: relative;
font-size: 15px;
line-height: 18px;
color: #1a1a1a; /* Assuming $gray900Color is #1a1a1a */
background-color: #f7f7f7; /* Assuming $gray50Color is #f7f7f7 */
border-radius: 2px;
width: 100%;
border-radius: 2px;
display: inline-block;
padding: 4px 8px;
font-size: 12px;
line-height: 15px;
font-weight: 600;
margin-bottom: 8px;
}
.docs-link-group a:hover {
background-color: #e1e1e1; /* Assuming $gray150Color is #e1e1e1 */
}
.docs-link-group a::after {
content: '';
position: absolute;
right: 14px;
top: 50%;
margin-top: -9px;
width: 18px;
height: 18px;
background-position: center;
background-size: contain;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M3 9H15M15 9L10.5 4.5M15 9L10.5 13.5' stroke='black' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}