-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
97 lines (81 loc) · 2.09 KB
/
style.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
91
92
93
94
95
96
97
.wds-site-glossary-page {
background-color: #fff;
max-width: 88.5%;
padding: 5%;
margin: 2rem 0;
}
.wds-site-glossary-page .header {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
max-width: 50%;
margin: 0 auto;
margin-bottom: 2rem;
}
.wds-site-glossary-page .back-to-glossary-link,
.wds-site-glossary-page .back-to-glossary-link:hover,
.wds-site-glossary-page .back-to-glossary-link:active,
.wds-site-glossary-page .back-to-glossary-link:focus {
color: #fff;
background: #f3713c;
border: none;
}
.wds-site-glossary-page .back-to-glossary-link:hover,
.wds-site-glossary-page .back-to-glossary-link:active,
.wds-site-glossary-page .back-to-glossary-link:focus {
box-shadow: 0 0 0 1px rgba(5, 6, 15, .05);
}
.wds-site-glossary-page .alphabet-links {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: center;
margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
.wds-site-glossary-page .alphabet-links {
justify-content: space-between;
}
}
.wds-site-glossary-page .alphabet-links a {
color: #000;
text-decoration: none;
border-radius: 1000px;
padding: 0 12px;
line-height: 41px;
width: 16px;
text-align: center;
}
.wds-site-glossary-page .alphabet-links a:hover {
background: rgba(5, 6, 15, .05);
}
.wds-site-glossary-page .alphabet-links a:focus {
color: #000;
box-shadow: 0 0 0 1px rgb(5, 6, 15), 0 0 2px 1px rgba(5, 6, 15, .05);
}
.wds-site-glossary-page h1 {
font-size: 3rem;
}
.wds-site-glossary-page .term-link-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 10px;
}
.wds-site-glossary-page .term-link {
color: #000;
}
.wds-site-glossary-page .term-link:hover {
text-decoration: underline;
cursor: pointer;
}
.wds-site-glossary-page .terms-content h1 {
font-size: 2rem;
}
.wds-site-glossary-page .terms-content ul {
list-style-type: circle;
padding-inline-start: 40px;
}
.wds-site-glossary-page .terms-content ol {
padding-inline-start: 40px;
}