-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (111 loc) · 1.81 KB
/
style.css
File metadata and controls
120 lines (111 loc) · 1.81 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* ----- style.css ----- */
/*
* {
margin: 20;
padding: 20;
}
body {
background-color: #e5e5f2;
}
*/
svg path {
opacity: 0.7;
fill: #7f7fbf;
stroke: #eee;
stroke-width: .25;
}
svg path:hover {
fill: #008000;
transition: 0.6s;
cursor: pointer;
}
.ocean
{
opacity: 1;
fill: #ffffff;
pointer-events: none;
cursor: not-allowed;
stroke: #000000;
stroke-width: 0.5;
}
/*----------------*/
/* WEBSITE DESIGN */
/*----------------*/
h1, h2, h3, h4, h5, h6 {
font-weight: 600;
}
h3 {
padding-bottom: 0px;
margin-bottom: 0px;
margin-top: 0px;
padding-top: 0px;
}
p {
padding-bottom: 5px;
margin-bottom: 5px;
margin-top: 0px;
padding-top: 0px;
}
.button_link {
background-color: #777777;
color: white;
padding: 14px 25px;
margin-bottom: 5px;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 5px;
}
.navbar {
margin-bottom: 12px;
margin-top: 0px;
overflow: hidden;
background-color: #FFFFFF;
}
.navbar a {
float: left;
font-size: 16px;
color: black;
text-align: center;
padding: 8px 10px;
text-decoration: none;
}
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropbtn {
font-size: 16px;
border: none;
outline: none;
color: black;
padding: 8px 10px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: #ddd;
}
.dropdown-content {
display: none;
position: absolute;
background-color: white;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
float: none;
color: black;
padding: 8px 10px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
background-color: #ddd;
}
.dropdown:hover .dropdown-content {
display: block;
}