-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
90 lines (77 loc) · 1.25 KB
/
stylesheet.css
File metadata and controls
90 lines (77 loc) · 1.25 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
79
80
81
82
83
84
85
86
87
88
89
90
body {
background: #f2f2f2;
font-size: 1.25em;
font-family: 'Raleway', sans-serif;
}
nav {
margin: 100px auto;
text-align: center;
}
nav ul {
margin-left: 0;
padding-left: 0;
width: 500px;
list-style: none;
position: relative;
display: inline-table;
}
nav ul ul {
display: none;
}
nav ul li:hover > ul {
display: block;
}
nav ul li {
float: left;
width: 500px;
text-align: left;
border-bottom: 3px solid #2ecc71;
}
nav ul li:hover {
background: #f2f2f2;
}
nav ul li a {
display: block;
padding: 15px 10px;
color: #2a2a2a;
text-decoration: none;
}
nav ul ul {
border-radius: 0px;
padding: 0;
position: absolute;
top: 100%;
}
nav ul ul li {
float: none;
border-bottom: 2px solid #eaeaea;
position: relative;
}
nav ul ul li a {
padding: 15px 10px;
color: #838383;
}
nav ul ul li a:hover {
background: #47d583;
color: #fff;
}
#down-triangle {
float: right;
width: 0;
height: 0;
margin-top: 10px;
border-top: 10px solid #2ecc71;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
}
.circle {
float: right;
display: inline;
width: 10px;
height: 10px;
margin-top: 5px;
border: 3px solid #8ce5b2;
-moz-border-radius: 70px;
-webkit-border-radius: 70px;
border-radius: 70px;
}