-
Notifications
You must be signed in to change notification settings - Fork 2
/
skku.css
149 lines (127 loc) · 2.54 KB
/
skku.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/* @theme skku */
@import 'gaia';
@import url('https://fonts.googleapis.com/css2?family=Gowun+Dodum&family=Noto+Sans+KR:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');
:root {
--color-background: #fff;
--color-foreground: #333;
--color-highlight: rgb(141,198,63);
}
section {
background-image: none;
font-family: 'Gowun Dodum', sans-serif;
padding-top: 90px;
padding-left: 75px;
padding-right: 75px;
}
/* https://github.com/marp-team/marpit/issues/271 */
section::after {
font-weight: 700;
content: attr(data-marpit-pagination) '/' attr(data-marpit-pagination-total);
}
ul ul {
font-size: 0.9em;
}
section.lead {
font-family: 'Gowun Dodum', sans-serif;
padding-left: 40px;
padding-right: 48px;
}
section.lead h1 {
color: rgb(43,102,83);
text-align: left;
background-image: url("skku_logo.jpg");
background-position: left;
background-repeat: no-repeat;
background-size: 110px;
padding-left: 110px;
}
section.lead h1 strong {
-webkit-text-stroke: 1px rgb(43,102,83);;
}
section.lead h2 {
color: rgb(43,102,83);;
text-align: left;
padding-left: 110px;
}
section.lead h2 strong {
-webkit-text-stroke: 1px rgb(43,102,83);;
}
section.lead h3 {
color: rgb(43,102,83);;
text-align: left;
padding-left: 110px;
}
section.lead h3 strong {
-webkit-text-stroke: 1px rgb(43,102,83);;
}
section.lead h4 {
color: rgb(43,102,83);;
text-align: left;
padding-left: 110px;
}
section.lead h4 strong {
-webkit-text-stroke: 1px rgb(43,102,83);;
}
section.lead h5 {
color: rgb(43,102,83);;
text-align: left;
padding-left: 110px;
}
section.lead h5 strong {
-webkit-text-stroke: 1px rgb(43,102,83);;
}
section.lead p {
text-align: right;
font-size: 30px;
}
section p{
font-size: 27px;
}
section.cont {
padding-top: 150px;
}
section.cont p{
font-size: 29px;
}
section.cont pag{
color: rgb(7,42,96);
font-size: 20px;
-webkit-text-stroke: 0px;
}
section.cont p{
-webkit-text-stroke: 0.2px;
}
section.end h1, section.end h2, section.end h3, section.end h4{
text-align: center;
color: rgb(43,102,83);
}
section.end p{
text-align: center;
}
header {
background-color: rgb(43,102,83);
color: #fff;
font-size: 1em;
font-weight: 700;
}
blockquote {
max-width: 90%;
border-top: 0.1em dashed #555;
font-size: 60%;
position: absolute;
bottom: 20px;
}
blockquote::before {
content: "";
}
blockquote::after {
content: "";
}
img[alt~="center"] {
display: block;
margin: 0 auto;
}
code {
font-family: 'Source Code Pro', monospace;
}