-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (57 loc) · 1000 Bytes
/
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
* {
box-sizing: border-box;
}
.container {
margin-top: 50px;
}
#title {
font-size: 50px;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
#vat-form {
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-weight: 700;
}
label {
font-size: 18px;
}
input, select {
width: 400px;
height: 30px;
border: 1px solid #cfcfcf;
border-radius: 2%;
margin: 0 auto 15px auto;
}
input:hover, select:hover {
border: 1px solid orangered;
}
button {
width: 110px;
height: 40px;
border: none;
border-radius: 20%;
box-shadow: 1px 1px 2px silver;
color: #ffffff;
font-size: 18px;
text-align: center;
}
button:hover {
box-shadow: 1px 1px 2px #545454;
}
#submit {
background-color: #004aad;
}
#reset {
background-color: #ff0000;
}
@media screen and (max-width: 480px) {
#title {
font-size: 32px;
}
label {
font-size: 16px;
}
input, select {
width: 82.5%;
}
}