-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (98 loc) · 1.47 KB
/
Copy pathstyle.css
File metadata and controls
115 lines (98 loc) · 1.47 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
114
body {
margin: 0;
}
html {
font-family: monospace;
display: table;
margin: auto;
height: 1vh;
background-color: #f2ebbc;
color: #54546d;
}
h1 {
font-size: 1.6rem;
color: #223249;
margin: 16px 0px;
}
h2 {
font-size: 1.4rem;
margin: 0px;
margin-bottom: 8px;
}
p {
font-size: 1.2rem;
margin: 0px;
color: #727169;
}
a {
font-size: 1.2rem;
display: inline-block;
margin: 16px 0px;
color: #957fb8;
text-align: center;
font-weight: bold;
text-decoration: underline;
}
a:hover {
text-decoration: none;
transform: scale(1.1);
}
a:active {
transform: scale(0.9);
}
img {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border-radius: 4px;
}
.center-text {
text-align: center;
display: block;
}
.centered {
display: flex;
align-items: stretch;
justify-content: center;
min-height: 100vh;
width: 100%;
flex-direction: column;
gap: 16px;
}
.splitbox {
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
flex-wrap: wrap;
align-items: stretch;
gap: 16px;
}
#nav {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 32px;
align-items: center;
justify-content: center;
}
#nav * {
margin: 0px;
}
#left-box,
#right-box {
position: relative;
min-height: 450px;
min-width: 300px;
flex: 1 1 100px;
}
#left-box {
display: flex;
flex-direction: column;
justify-content: center;
}
#right-box a {
margin: 0px;
}