-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (80 loc) · 1.28 KB
/
style.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
body {
background: #C47A00;
color: #FFF;
font-family: 'Arial', sans-serif;
font-size: 14px;
}
#container {
width: 60%;
background: #0648a0;
margin: 20px auto;
overflow: auto;
padding: 25px;
}
header {
text-align: center;
border-bottom: 1px dashed #FFF;
}
h1 {
margin: 0;
padding: 0;
}
h2 {
font-size: 16px;
}
header p {
padding: 0;
margin-top: 5px;
color: #FFAE26;
}
section {
min-height: 400px;
}
input, label {
cursor: pointer;
}
input[type='submit'] {
background: #C47A00;
border: 0;
color: #FFF;
padding: 10px 15px;
border-radius: 5px;
}
input[type='submit']:hover {
background: #C47B00;
}
input[type='submit']:active {
background: #955D00;
}
#results h2 {
background: #C47A00;
padding: 10px;
margin: 10px 0;
}
#results span {
color: #C47A00;
font-weight: bold;
}
footer {
text-align: center;
}
footer a {
color: #FFAE26;
}
footer a:hover {
color: #FFF;
text-decoration: none;
}
footer a:active {
color: #FFAE26;
}
@media screen and (max-width:1200px){
footer {
padding-top: 25px;
}
}
@media screen and (max-width:767px){
#container {
width: 80%;
}
}