-
Notifications
You must be signed in to change notification settings - Fork 0
/
reserve.css
84 lines (76 loc) · 1.36 KB
/
reserve.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
*{
font-family: sans-serif;
}
.banner{
width: 100%;
height: 100%;
background-attachment: fixed;
}
.navbar{
width: 85%;
margin: auto;
padding: 35px 0;
}
#nav{
text-align: right;
float: right;
}
.navbar ul li{
list-style: none;
display: inline-block;
margin: 0 20px;
}
.navbar ul li a{
text-decoration: none;
color: #fff;
text-transform: uppercase;
}
.navbar ul li a:hover{
text-decoration: underline;
color: #009688;
}
#content{
margin-top: 2em;
margin-left: 4em;
width:55%;
top: 50%;
color: #f7e7ce;
font-weight: bold;
}
#content h1{
font-size: 3em;
margin-bottom:0.5em;
}
#submit{
width: 20em;
height: 4em;
padding: auto;
margin: 0px 10px;
border-radius: 25em;
font-weight: bold;
border: 2px solid white;
background: transparent;
color: white;
cursor: pointer;
font-size: 1.25em;
}
#submit:hover{
color: #009688;
border-color: #009688;
}
#content tr td{
font-size: 1em;
}
#content tr td input,#content tr td select{
background: transparent;
margin-bottom: 1em;
text-align: left;
border: 2px solid white;
color: white;
padding: 1em;
width: 45%;
}
select{
background: transparent;
color: white;
}