-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylecopy.css
More file actions
78 lines (64 loc) · 1.28 KB
/
stylecopy.css
File metadata and controls
78 lines (64 loc) · 1.28 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
body{
display: flex;
background-color: rgb(49, 49, 49);
color: aliceblue;
font-family: Arial, Helvetica, sans-serif;
padding: 0;
margin: 0;
}
nav{
display: flex;
flex-direction: row;
height: 75px;
border-bottom: 5px solid blue;
padding-top: 5px;
margin-bottom: 5px;
background-color: rgb(37, 37, 37);
text-align: center;
margin: auto;
width: 100%;
}
nav ul{
display: flex;
flex-direction: row;
padding: 0;
margin-left: auto;
margin-right: auto;
width: 90%;
}
nav li{
flex-direction: row;
list-style: none;
flex-grow: 1;
padding: 0;
background-image: url(richB2.png) ;
background-repeat: repeat-x;
background-position: center;
height: 56px;
}
nav li.head {
background: none;
flex-grow: 0;
}
/* states inherit from this base instead of cloning the style */
nav a {
line-height: 56px;
list-style: none;
border: 0;
text-decoration: none;
color: black;
height: 56px;
margin: 0;
font-size: 1.3vw
}
@media screen and (max-width: 780px) {
nav a {
font-size: 10px;
}
}
nav a:hover{
color: rgb(255, 255, 255);
}
nav a:active{
color: Green;
}