This repository has been archived by the owner on May 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (71 loc) · 1.67 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
73
74
75
76
77
78
79
80
81
* {
margin: 0;
font-family: 'Zurich';
}
:root {
font-size: 16px;
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background: #111;
}
main {
background: url('https://media.discordapp.net/attachments/649968233553723405/709086018942402631/image1.jpg');
background-position: top;
background-size: 100%;
width: 800px;
height: 600px;
display: flex;
align-items: end;
justify-content: center;
}
.menulisting {
width: 65%;
height: 410px;
margin-top: auto;
margin-bottom: 50px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
user-select: none;
}
.menulisting li {
width: 100%;
height: 80%;
margin: 5px 0px;
background: rgb(0, 0, 255);
list-style-type: none;
color: white;
display: flex;
align-items: center;
font-size: 1.6rem;
}
.menulisting li:nth-of-type(1) {
margin-top: 0px;
}
li .num {
background: rgb(0, 0, 179);
width: 60px;
height: 100%;
margin: 0px 10px;
color: rgb(126, 126, 255);
text-align: center;
}
.menulisting li:hover {
background: yellow;
color: rgb(0, 0, 179);
}
.menulisting li:hover .num {
background: rgb(197, 197, 0);
color: rgb(0, 0, 179);
}
@font-face {
font-family: 'Zurich';
src: url('zurich_black_extended_bt-webfont.woff2') format('woff2'), url('zurich_black_extended_bt-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}