-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (75 loc) · 1.6 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
@import url(https://fonts.googleapis.com/earlyaccess/hanna.css);
@import url(https://fonts.googleapis.com/earlyaccess/notosanskr.css);
body {
background-color: rgb(37, 37, 37);
color: rgb(205, 205, 205);
}
.title {
font-family: 'Hanna', sans-serif;
font-size: 40px;
background: linear-gradient(90deg, red, orange, yellow, green, blue, navy, purple);
color: transparent;
-webkit-background-clip: text;
}
.name {
font-family: 'Hanna', sans-serif;
font-size: 40px;
background: linear-gradient(90deg, red, orange, yellow, green, blue, navy, purple);
color: transparent;
-webkit-background-clip: text;
padding-left: 20%;
padding-right: 20%;
}
.tableOfContents {
font-size: 25px;
font-weight: bold;
box-align: center;
padding: 10px;
margin: 0 auto;
width: 500px;
height: auto;
background-color: rgb(20, 20, 20);
color: rgb(205, 205, 205);
}
.main {
font-family: 'Noto Sans KR', sans-serif;
font-size: 20px;
padding: 10px;
margin: 0 auto;
width: 800px;
height: auto
}
@media (max-width: 900px) {
.main {
width: 90%;
}
}
@media (max-width: 500px) {
.tableOfContents {
width: 100%;
}
}
.hyperlink {
font-size: larger;
font-weight: bold;
}
#toTheTopBtn {
position: fixed;
bottom: 30px;
right: 25%;
z-index: 99;
border: none;
outline: none;
background-color: black;
color: rgb(205, 205, 205);
cursor: auto;
padding: 15px;
border-radius: 10px;
font-size: 25px;
}
a {
text-decoration-line: none;
}
html {
scroll-behavior: smooth;
}