-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (50 loc) · 955 Bytes
/
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
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+TC);
.disc-list {
list-style-position: outside;
list-style: disc;
margin-left: 40px;
}
.disc-list li {
margin-bottom: 5px;
}
.all-flex-center {
display: flex;
justify-content: center;
align-items: center;
gap: 0.25rem;
}
.section-header {
text-align: left;
font-size: 1.5rem;
font-weight: bold;
padding: 5px 0;
margin-bottom: 10px;
border-top: 4px solid #c7c7c7;
border-bottom: 2px solid #c7c7c7;
}
.section {
margin-bottom: 30px;
text-align: justify;
}
.right-label {
float: right;
background-color: #d1d5db;
padding: 0.25rem 0.75rem;
border-radius: 9999px;
}
.avatar {
width: 95px;
}
.app-header {
margin-top: 20px;
margin-bottom: 30px;
}
.app {
padding: 0 30px;
min-width: 700px;
max-width: 780px;
margin: 0 auto;
}
* {
font-family: 'Noto Sans TC', sans-serif;
}