-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (95 loc) · 1.77 KB
/
style.css
File metadata and controls
110 lines (95 loc) · 1.77 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body, form, select, option, label, div {
margin: 0;
padding: 0;
border: 0;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-size: 14px;
}
body {
color: #dedede;
width: 300px;
padding: 5px;
}
.main-image {
padding: 20px;
background-image: url(http://res.cloudinary.com/dhorsi7vf/image/upload/v1474590981/background2_mjg6ua.png);
background-position-y: 100%;
background-repeat: repeat-x;
background-color: black;
}
.title {
font-size: 45px;
margin-bottom: 5px;
font-weight: 200;
font-family: 'Unica One', cursive;
text-align: center;
}
.subtitle {
margin-bottom: 20px;
font-size: 14px;
text-align: center;
}
select {
width: 100%;
height: 32px;
background: #FFF;
padding: 6px;
margin-bottom: 3px;
outline: none;
cursor: pointer;
}
.emptySelect {
text-align: center;
color: #bc7777;
}
input[type="text"] {
width: 96%;
margin: 15px 0px 3px 0px;
height: 20px;
border-radius: 5px;
border-style: none;
font-size: 14px;
padding: 5px;
}
input[type="text"]:focus {
outline: none;
}
.emptyQuery {
margin-bottom: 10px;
color: #bc7777;
text-align: center;
}
label {
cursor: pointer;
}
.checkboxes {
display: flex;
justify-content: space-around;
margin-top: 15px;
font-size: 16px;
}
input[type="checkbox"] {
cursor: pointer;
}
input.submit-button {
width: 120px;
height: 40px;
border-radius: 5px;
border: 1px solid #FFF;
color: #FFF;
font-size: 22px;
cursor: pointer;
margin: 0 auto;
display: block;
margin-top: 15px;
background: #000;
font-family: 'Unica One';
}
input.submit-button:hover {
border: 1px solid #929292;
background: none;
border: white 2px solid;
}
input.submit-button:focus {
outline: none;
}