forked from bee-san/AnvilHack_IV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
92 lines (72 loc) · 1.5 KB
/
main.css
File metadata and controls
92 lines (72 loc) · 1.5 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
html {
background-color: ghostwhite;
}
h1 {
font-family: 'Roboto Condensed', sans-serif;
font-size: 100px;
}
nav {
text-align: center;
font-size: 30px;
text-decoration: none;
padding-bottom: 50px;
}
body {
text-align: center;
}
#tableContainer-1 {
height: 100%;
width: 100%;
display: table;
}
#tableContainer-2 {
vertical-align: middle;
display: table-cell;
height: 100%;
}
#myTable {
margin: 0 auto;
}
/*********** Button styling ************/
/* unvisited link */
a:link {
color: black;
}
/* visited link */
a:visited {
color: black;
}
/* mouse over link */
a:hover {
color: darkslategrey;
}
/* selected link */
a:active {
color: black;
text-decoration: underline;
}
/************ Table *************/
table {
color: #333; /* Lighten up font color */
font-family: Helvetica, Arial, sans-serif; /* Nicer font */
width: 640px;
border-collapse: collapse;
border-spacing: 0;
}
td, th { border: 1px solid #CCC; height: 30px; } /* Make cells a bit taller */
th {
background: #F3F3F3; /* Light grey background */
font-weight: bold; /* Make sure they're bold */
}
td {
background: #FAFAFA; /* Lighter grey background */
text-align: center; /* Center our text */
}
/************** Element IDs ************/
#center {
text-align: center;
vertical-align: 50%;
}
#maintitle {
height: 400px;
}