-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle.css
66 lines (58 loc) · 953 Bytes
/
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
#my_video {
position: fixed;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
transform: translate(-50%, -50%);
}
html {
align-items: center;
background-color: #f7eee4;
color: #c5c8c6;
display: flex;
font: 22px/1 "Inconsolata", monospace;
height: 100%;
justify-content: center;
}
body {
background: #141414;
border-radius: 2px;
box-shadow: 15px 15px 5px #1d1f2187;
color: #c5c8c6;
display: flex;
flex-direction: column;
min-height: 30ch;
min-width: 50vw;
padding: 2em;
border-radius: 15px;
}
a {
color: inherit;
text-decoration: none;
}
a:focus,
a:hover {
font-weight: bold;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav {
column-gap: 2em;
display: grid;
grid-template-columns: auto auto auto auto;
padding: 1em 0;
}
li:first-child {
color: #5050f2;
font-weight: bold;
}
li:last-child {
margin: 0 0 1em;
}