-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
77 lines (77 loc) · 1.52 KB
/
stylesheet.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
@import url(https://cdn.jsdelivr.net/gh/tonsky/[email protected]/distr/fira_code.css);
:root {
font-size: 17px;
--background: #261b17;
--shadow: #1b110e;
--accent: #e86420;
--foreground: #e4cbb3;
--accent-alt: #e01d1d;
}
::-webkit-scrollbar {
display: none;
}
* {
font-family: 'Fira Code', monospace;
font-weight: 300;
background-color: var(--background, #261b17);
color: var(--foreground, #e4cbb3);
-webkit-tap-highlight-color: transparent;
text-transform: lowercase;
text-decoration: none;
line-height: 1.3;
}
a:visited {
color: var(--foreground, #e4cbb3);
}
a:hover {
color: var(--accent, #e86420);
cursor: pointer;
}
a:active,
a:focus {
color: var(--accent-alt, #e01d1d);
}
header {
text-align: center;
}
/* "Lantern" in kanji */
h1 {
font-weight: 600;
font-size: 1.9rem;
text-shadow: 3px 3px 5px var(--accent, #e86420);
margin: -0rem 0rem 1rem 0rem;
}
img {
margin: 0rem 0rem 1rem 0rem;
filter: sepia(-35%);
max-width: 100%;
}
/* Links boxes wrapper */
main {
display: flex;
flex-direction:row;
justify-content: center;
flex-wrap: wrap;
text-align: center;
}
/* Link Box */
fieldset {
display: flex;
flex-direction: column;
justify-content: center;
margin: 0.5rem;
padding: 1.35rem;
border: 1px solid var(--foreground, #e4cbb3);
box-shadow: 8px 8px 7px 2px var(--shadow, #1b110e);
}
/* Mini Heading in border */
legend {
font-weight: 600;
margin: auto;
}
/* Remove bullet points */
ul {
list-style: none;
padding: 0;
margin: 0;
}