-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (75 loc) · 1.7 KB
/
style.css
File metadata and controls
94 lines (75 loc) · 1.7 KB
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
@import url('./styles/1-intro.css');
@import url('./styles/2-header.css');
@import url('./styles/3-main.css');
@import url('./styles/4-about.css');
@import url('./styles/5-html-css.css');
@import url('./styles/6-curriculum.css');
@import url('./styles/7-contact.css');
@import url('./styles/8-footer.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic+Coding:wght@400;700&display=swap');
/* ===== 변수 구간 ===== */
:root {
--color-main: #FF4200;
--color-sub: #00A200;
--color-dark: #2F4858;
--color-emph: #F10F5F;
--color-text: #281812;
--color-lighter: #DC9C86;
--color-light-bd: #FFE6D6;
--color-light-bg: #FFF5ED;
--font-code: 'Nanum Gothic Coding', monospace;;
--font-size-title: 44px;
--font-size-subtitle: 32px;
--font-size-tag: 26px;
--font-size-larger: 20px;
--font-size-text: 18px;
--height-toolbar: 72px;
}
/* ===== 리셋 구간 ===== */
body {
margin: 0;
font-family: 'Noto Sans KR', sans-serif;
/* 개발용 설정 */
min-height: 150vh;
}
h1, h2, h3, h4, h5, h6 {
font-size: inherit;
font-weight: normal;
margin: 0;
}
p {
margin: 0;
}
strong, em {
font-weight: inherit;
font-style: normal;
}
ul, ol {
margin: 0;
padding: 0;
list-style-type: none;
}
dl { margin: 0; }
dd {
margin: 0;
display: inline;
}
figure { margin: 0; }
a {
text-decoration: none;
color: inherit;
}
th { font-weight: normal; }
address { font-style: inherit; }
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}