-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
73 lines (61 loc) · 1.13 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
/*
* this is free and unencumbered software released into the public domain
* refer to the attached UNLICENSE or http://unlicense.org/
*/
html, body {
height: 100%;
overflow: hidden;
width: 100%;
}
html, body, ul, li {
color: rgb(34, 0, 255);
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo,
monospace, Courier;
font-size: calc(0.9em + 0.15vw);
margin: 0;
padding: 0;
}
.container {
/*overflow: hidden;*/
position: relative;
z-index: 1;
}
.contents {
color: white;
left: 0;
padding: calc(0.5em + 0.5vw);
position: absolute;
top: 0;
z-index: 5;
}
.bottom{
position: absolute;
bottom: 10px;
width: 50%;
}
.center{
position: absolute;
top: 10%;
left: 30%;
font-size: 420px;
}
.contents2 {
color: white;
position: absolute;
z-index: 5;
font-size: 20px;
}
ul {
font-weight: 600;
list-style-type: none;
}
li { padding: calc(0.1em + 0.1vw) calc(0.1em + 0.1vw); }
li a {
color: rgb(28, 39, 189);
display: block;
text-decoration: none;
}
.uncommented { color: #fff; }
li a:hover { color: #fff; }
li a span { display: inline; }
li a:hover span { display: none; }