-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (86 loc) · 1.17 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
98
99
100
101
102
103
104
105
106
107
* {
font-family: Inter, sans-serif;
line-height: 1.5rem;
margin: 0;
}
main {
padding: 2rem;
max-width: 48rem;
margin: 0 auto;
}
address {
font-style: normal;
}
p {
font-size: 1rem;
line-height: 1.75rem;
}
h1 {
font-weight: bold;
font-size: 2rem;
line-height: 2.5rem;
}
h2 {
font-weight: bold;
font-size: 1.5rem;
line-height: 2rem;
}
h3 {
font-weight: bold;
font-size: 1.25rem;
line-height: 1.75rem;
}
h4 {
font-weight: bold;
font-size: 1.125rem;
line-height: 1.75rem;
margin: 1rem 0;
}
section {
margin-bottom: 2rem;
}
a {
color: #337ab7;
text-decoration: none;
}
/* 프린트 시 간격 달라지도록 */
ul {
padding-left: 1.25rem;
margin: 0.5rem 0;
}
li + li {
margin-top: 0.5rem;
}
hr {
border: 0;
border-top: 0.125rem solid #adb5bd;
margin-top: 0.5rem;
margin-bottom: 1rem;
}
.intro {
margin: 1rem 0;
}
.contact {
margin-bottom: 2rem;
}
.text-muted {
color: #6c757d;
}
@media print {
li + li {
margin-top: 0.25rem;
}
hr {
margin-top: 0.25rem;
margin-bottom: 0.5rem;
}
section {
margin-bottom: 1rem;
}
h4 {
margin: 0.5rem 0;
}
.contact {
margin-bottom: 1rem;
}
}