-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
134 lines (112 loc) · 2.06 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
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
/* Color Palette
color.black: #25282a
color.green: #C5E86C
color.grey: #454839 */
.websiteFrameBottom {
position: fixed;
height: 1px;
background-color: #454839;
width: calc(100vw - 80px);
left: 40px;
bottom: 40px;
}
.websiteFrameTop {
position: fixed;
height: 1px;
background-color: #454839;
width: calc(100vw - 80px);
left: 40px;
top: 80px;
}
.websiteFrameLeft {
position: fixed;
border-left: 1px solid #454839;
height: calc(100vh - 120px);
left: 40px;
top: 80px;
}
.websiteFrameRight {
position: fixed;
border-right: 1px solid #454839;
height: calc(100vh - 120px);
right: 40px;
top: 80px;
}
.websiteFramePic {
position: fixed;
right: 40px;
bottom: 40px;
}
.imagesStyle {
}
.textHeader {
font-family: 'Liu Jian Mao Cao', cursive;
position: fixed;
right: 10vh;
top: 0px;
}
.banner {
padding: 50vh;
text-align: center;
font-family: 'Liu Jian Mao Cao', cursive;
font-size: 40px;
}
.chapter1 {
padding: 50vh;
text-align: left;
font-family: 'Fira Mono', monospace;
font-size: 25px;
}
.container {
max-width: 800px;
margin: 80px auto;
width: calc(100vw - 80px);
/* Here comes the magic */
display: grid;
/* grid-template-columns: 200px, 200px, 200px;*/
grid-gap: 5px;
grid-template-columns: repeat(6, 1fr);
grid-template-rows: repeat(5,150px);
}
.container div {
border: 1px solid var(--black);
}
body {
background-color: #ffffff;
margin: 0px;
padding: 0px;
font-family: 'Fira Mono', monospace;
}
h2 {
font-family: 'Liu Jian Mao Cao', cursive;
text-align: center;
margin-top: 350px;
margin-bottom: 350px;
font-size: 60px;
}
nav {
position: fixed;
left: 30px;
top: 80px;
}
ul {
list-style-type: none;
font-size: 16px;
}
ul li {
padding: 3px;
}
ul li a {
text-decoration: none;
color: #25282a;
}
a:hover {
color: #C5E86C;
}
a:active {
color: #454839;
}
img:hover {
filter: alpha(opacity=40);
opacity: .3;
}