-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
81 lines (69 loc) · 1.35 KB
/
styles.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
@import url('https://fonts.googleapis.com/css?family=Abril+Fatface|Noto+Sans+KR|Righteous|Ubuntu&subset=korean');
:root {
--background-color: #0f0036;
--tint1: #783585;
--tint2: rgb(51, 102, 204);
--tint2-highlight: #5185fa;
}
body {
background-color: var(--background-color);
color: white;
font-family: 'Noto Sans KR', sans-serif;
margin: 0px 200px;
height: 100%;
}
h1 {
/*background-color: #0f003680;*/
font-family: 'Righteous', cursive;
text-align: center;
color: white;
padding: 80px 0px 8px 0px;
margin: 0px;
/*position: sticky;*/
/*position: -webkit-sticky;*/
/*top: 0px;*/
}
h1::before {
content: "\2022";
padding-right: 8px;
}
a.button {
background-color: var(--background-color);
color: white;
text-decoration: none;
padding: 4pt 6pt;
border: 1px solid white;
border-radius: 5pt;
line-height: 2.2em;
}
a.button:hover {
background-color: gray;
}
a.strong {
background-color: var(--tint2);
border: 1px solid var(--background-color);
}
a.strong:hover {
background-color: var(--tint2-highlight);
}
a.project {
}
footer {
font-family: 'Ubuntu', sans-serif;
text-align: center;
position: sticky;
position: -webkit-sticky;
/*top: 0px;*/
/*left: 0px;*/
/*right: 0px;*/
bottom: 0px;
margin: 0px;
padding: 18px;
}
span.dot {
height: 2px;
width: 2px;
background-color: white;
border-radius: 50%;
display: inline-block;
}