-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.css
110 lines (84 loc) · 1.49 KB
/
site.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
1) Font Style
2) Borders, Margins, Padding
3) Sizing
*/
html {
background: url(/Users/Akerson/GitHub/Travel-Map/images/Jeju.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#main {
color: black;
background-color: grey;
}
#main {
padding: 5px;
padding-left: 15px;
padding-right: 15px;
border-radius: 0 0 5px 5px;
}
body {
font-family: "Trebuchet MS", Verdana, sans-serif;
font-size: 14px;
padding: 3px;
}
.picklistHeaders {
font-weight: bold;
font-family: "Trebuchet MS", serif;
}
body {
background-color: silver
}
h1, h2 {
font-family: Georgia, serif;
border-bottom: 3px solid white;
color: teal;
font-size: 30px;
}
span {
color: turquoise;
}
p {
font-family:cursive;
color: silver;
}
table {
width:100%;
}
table, th , td {
border: 1px solid grey;
border-collapse: collapse;
padding: 5px;
}
th {
text-align: left;
color: darkgreen;
}
table tr:nth-child(odd) {
background-color: #f1f1f1;
}
table tr:nth-child(even) {
background-color: #ffffff;
}
ul#menu {
padding: 0;
margin-bottom: 11px;
}
ul#menu li {
display: inline;
margin-right: 3px;
}
ul#menu li a {
background-color: #ffffff;
padding: 10px 20px;
text-decoration: none;
color: #696969;
border-radius: 4px 4px 0 0;
}
ul#menu li a:hover {
color: white;
background-color: black;
}