-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformat.css
More file actions
97 lines (80 loc) · 1.27 KB
/
format.css
File metadata and controls
97 lines (80 loc) · 1.27 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
93
94
95
96
html {
color: #DDD;
font-family: 'Play', sans-serif;
text-align: center;
margin: auto;
}
body {
background-image: url("hacks.jpg");
background-size: cover;
}
.nav {
text-align: right;
}
li {
display: inline-block;
padding-right: 1em;
font-size: 2em;
}
li a {
text-decoration: none;
color: #DDD;
}
li a:hover {
color: #999;
}
.body {
position: relative;
margin: auto;
margin-top: 15%;
}
.title {
font-size: 3em;
}
/*
// Tried to have the footer stay at the bottom but this also effects the PHP that's echo'ed out. EVERYTHING goes to the bottom of the page.
#wrap {min-height: 100%;}
#main {overflow: auto;
padding-bottom: 150px;}
#footer {
position: relative;
margin-top: -150px;
height: 150px;
clear: both;
}
*/
table {
border: .1em solid #DDD;
text-align: center;
background-color: rgba(50,50,50,.9);
margin: auto;
}
td {
padding: .4em;
}
form {
text-align: center;
margin: auto;
}
label {
font-family: 'Play', sans-serif;
font-size: 1.5em;
margin-left: -2.5%;
}
input {
border: 1px solid #DDD;
border-radius: 7px;
padding: 15px;
margin: .5em;
background-color: #DDD;
font-family: 'Play', sans-serif;
font-size: 1.5em;
}
#submit {
background-color: #ec151f;
color: #DDD;
border-color: #ec151f;
}
#submit:active {
border: 2px red;
}