-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.css
97 lines (82 loc) · 1.55 KB
/
application.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
.header1 {
font-size: 60px;
text-align: center;
text-shadow: 0px 0px 3px #FF0000;
margin-bottom: 0px;
}
.smallheader1 {
font-size: 20px;
text-align: center;
text-transform: uppercase;
text-shadow: 0px 0px 3px #FF0000;
margin-left: 46%;
margin-right: 46%;
padding: 1px;
border: 2px solid black;
background: navy;
opacity: 0.8;
}
#subhead {
font-size: 125%;
text-align: center;
text-shadow: 0px 0px 3px #FF0000;
margin-bottom: 0px;
margin-top: 50px;
margin-left: 40%;
margin-right: 40%;
padding: 10px;
border-top: 0.2px solid black; /* Border header blends in with black border for table and does not overlap */
border-right: 0.2px solid black;
border-left: 0.2px solid black;
}
form {
display: table;
padding: 10px;
margin-bottom: 10px;
margin-left: 20%;
border: thin solid black;
background:url(images/mexican.jpg) center; /* Background Image */
background-repeat: no-repeat;
}
#tablecontainer {
display: table;
border-spacing: 10px;
}
#tablerow {
display: table-row;
}
#apply {
color: white;
background: navy;
}
div.tablerow {
display: table-row;
}
div.tablerow > p, div.tablerow > label, div.tablerow > input {
vertical-align: top;
display: table-cell;
padding: 3px;
margin: 3px;
}
div.tablerow label:first-child {
text-align: left;
color: black;
}
legend {
font-weight: bold;
text-align: left;
}
form textarea {
display: table-cell;
display: inline-block;
width: 560px;
height: 110px;
}
a:link {
color: red;
}
a:visited { /* Visited link */
color: white;
}
a:hover { /* Mouse over link */
color: lightblue;