-
Notifications
You must be signed in to change notification settings - Fork 0
/
general.css
57 lines (50 loc) · 894 Bytes
/
general.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
.nav-bar {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: gray;
display: block;
float: left;
position: fixed;
top: 0;
right: 0;
left: 0;
}
.nav-bar-tab {
float: left;
}
.nav-bar-tab:hover {
background-color: darkgray;
box-shadow: 0 0 10px lightskyblue;
}
.active {
background-color: rgb(100, 100, 100);
font-weight: bold;
}
.nav-bar-tab a {
display: block;
color: white;
text-align: center;
padding: 12px 50px;
text-decoration: none;
font-family: Verdana, monospace;
font-size: 1.5em;
text-shadow: 0px 0px 1px black, 0px 0px 10px lightskyblue;
font-variant: small-caps;
}
.myelement {
background-color: red;
}
#content {
font-family: Verdana;
border-radius: 15px;
background: lightgray;
border: 3px solid gray;
padding: 10px;
width: 100%;
height: 200px;
}
body {
margin-top: 100px;
}