forked from IDCE-MSGIS/studio-week2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
87 lines (75 loc) · 1.2 KB
/
styles.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
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
body{
background-image: url('background-network.png');
color: white;
text-align: center;
}
#mapId{
height: 600px;
width: 90%;
margin: auto;
border-style: solid;
border-color: #c8c8c8;
border-width: medium;
padding-bottom: 0px;
}
a{
color: #f6691c;
}
a.attention{
font-size: 30px;
}
h1 {
margin: 0 auto;
/*color: blue;*/
text-align: center;
font-family: Arial;
}
p {
font-family: Arial;
}
#title {
font-size: 50px;
color: #f6691c;
font-family: Arial;
}
#subtitle {
width:90%;
background-color: #202020;
margin: auto;
border: solid;
border-color: #c8c8c8;
font-family: Arial;
}
ul {
list-style-type: none;
margin: 0 auto;
padding: 1px;
overflow: hidden;
/*background-color: white;*/
text-align: center;
float: center;
font-family: Arial;
}
li {
float: left;
border: 2px solid white;
}
/* Add a border to all( but not the last) list items */
li:last-child {
border: 2px solid white;
}
li a {
display: block;
color: white;
padding: 15px 17px;
text-decoration: none;
background-color: #202020;
}
/* Links will change color when hovered over */
li a:hover {
background-color: #f6691c;
}
.active {
background-color: #f6691c ;
border-color: #757575
}