blob: 56213631c421dc6fb8427253f5ef3d5de0cec3ba (
plain)
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
|
:root {
--color1: lightgrey;
--color2: lightslategrey;
--color3: white;
--color4: grey;
}
body {
margin: 0;
font-family: monospace;
}
section {
}
form{
margin: 0;
}
nav {
position: fixed;
top: 0;
right: 0;
z-index: 10;
background-color: var(--color1);
/* width: calc(10% - 20px); */
width: 10%;
border: ridge 1px grey;
}
div#menu {
display: none;
}
nav:hover div#menu {
display: block;
}
nav a {
display: block;
}
nav a:hover {
background-color: var(--color2);
}
nav #loginpass {
width: 100%;
}
|