-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (63 loc) · 1.07 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
html, body, .section, .section>.columns{
height:100%;
}
.desktop-image, .tablet-image, .mobile-image, .laptop-image{
background-image: url("test.jpeg");
width:100%;
background-position: center;
background-size: cover;
}
.desktop-image{
padding-top:52.08%;
}
.laptop-image{
padding-top:47.56%;
}
.tablet-image{
padding-top:156.25%;
}
.mobile-image{
padding-top:56.25%;
}
.result{
border:2px solid gray;
padding:15px;
}
h1, h2{
text-align:center;
font-weight:700;
}
h1{
font-size:24px;
margin: 0 0 20px;
font-family:"United Sans";
}
h2{
margin: 20px 0;
font-family:acumin-pro-semi-condensed;
}
.button{
width:100%;
background-color:#CFB991;
color:black;
border:1px solid black;
border-radius:0;
display:block;
height:auto;
}
.button label{
text-align: center;
font-weight:700;
width:100%;
cursor: pointer;
white-space: normal;
}
.button input{
height:0.0001px;
display:block;
}
.button:hover{
background-color:white;
color:black;
border:1px solid black;
}