-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (54 loc) · 1.39 KB
/
style.css
File metadata and controls
54 lines (54 loc) · 1.39 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
#navbar {
width: 90vw;
height: 5vh;
margin: auto;
margin-bottom: 15px;
display: flex;
}
a {
text-decoration: none;
color: black;
}
body {
margin: 0px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
#main {
width: 90vw;
height: 90vh;
border-style: solid;
border-color: black;
border-radius: 20px;
border-width: 5px;
background-color: lightblue;
margin: auto;
}
#maintext {
text-align: center;
position: absolute;
font-size: 30pt;
width: inherit;
}
.navicon {
background-color: lightsalmon;
border-radius: 10px;
width: 29vw;
height: 100%;
margin-right: 0.5vw;
margin-left: 0.5vw;
transition: 0.1s ease-in-out;
display: flex;
justify-content: center;
align-items: center;
font-size: 20pt;
}
.navicon:hover {
background-color: salmon;
width: 29.75vw;
margin-right: 0.125vw;
margin-left: 0.125vw;
font-size: 21pt;
}
.inlineimg {
height: 35px;
}