-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (98 loc) · 1.59 KB
/
style.css
File metadata and controls
113 lines (98 loc) · 1.59 KB
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
:root {
background-color: #555555;
color: aliceblue;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
scroll-behavior: smooth;
font-size: small;
}
body {
margin: 0;
}
a {
color: #000;
text-decoration: none;
}
a:hover {
color: aliceblue;
text-decoration: none;
}
ul {
list-style: none;
padding: 0;
}
li, h2 {
display: inline;
padding: 1rem;
}
p {
font-size: medium;
}
footer {
padding-top: 5%;
}
.centerText {
text-align: center;
}
.landing {
font-size: large;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
filter: drop-shadow(0rem .5rem 0rem #000);
}
.heading {
font-size: large;
background-color: #9e9e9e;
color: #000;
padding: .25rem;
filter: drop-shadow(0rem .25rem 0rem #353535);
}
.umbra {
background: #222227;
text-align: left;
box-sizing: border-box;
border-radius: 1rem;
align-self: center;
width: 60%;
padding: 1rem;
margin: auto;
}
.crimson {
background-color: #cb3a38;
text-align: left;
box-sizing: border-box;
border-radius: 1rem;
align-self: center;
width: 60%;
padding: 1rem;
margin: auto;
}
.labyrinth {
background-color: #000;
text-align: left;
box-sizing: border-box;
border-radius: 1rem;
align-self: center;
width: 60%;
padding: 1rem;
margin: auto;
}
.about {
background-color: #1c1724;
text-align: left;
box-sizing: border-box;
border-radius: 1rem;
align-self: center;
width: 60%;
padding: 1rem;
margin: auto;
}
#backup {
border-style: dashed;
border-radius: 2rem;
padding: .25rem;
position: relative;
}