-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (57 loc) · 1.11 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
body{
margin: 0;
}
.base{
padding-left: 5%;
}
nav{
background-color: #333;
overflow: hidden;
display: flex;
}
nav a{
text-decoration: none;
color: #db3434;
padding: 10px;
font-size: 25px;
display: block;
font-weight: bold;
}
label {
display: inline-block;
width: 100px;
text-align: right;
padding-right: 5%;
}
.button {
display: inline-block;
padding: 10px 20px;
font-size: 14px;
font-weight: bold;
text-align: center;
text-decoration: none;
border-radius: 5px;
background-color: #db3434;
color: #fff;
border: none;
cursor: pointer;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #ff0000b8;
}
.container {
margin-left: 180px;
margin-top: 30px;
justify-content: center;
align-items: center;
}
.results{
padding-left: 5%;
}
@media screen and (max-width: 992px) {
.s130 form .inner-form .input-field {
height: 50px;
font-size: xx-small;
}
}