-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (50 loc) · 856 Bytes
/
style.css
File metadata and controls
58 lines (50 loc) · 856 Bytes
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
*,
::before,
::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
min-height: 100vh;
background: #f1f1f1;
font-family: Open sans, Helvetica, sans-serif;
padding: clamp(20px, 5vw, 50px) 20px 10px;
}
.container {
max-width: 800px !important;
}
h1 {
font-family: raleway, serif;
font-size: clamp(8px, 5vw, 49px);
}
.form-label {
font-size: clamp(10px, 5vw, 20px);
}
img {
width: 100%;
}
.image-container {
height: 200px;
}
.img-fluid {
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: center;
object-position: center;
}
.fixed-icon {
width: 47px;
position: fixed;
bottom: 21px;
right: 0;
border: 1px solid;
border-radius: 50%;
text-align: center;
padding: 10px;
cursor: pointer;
}
.fixed-icon img {
width: 100%;
}/*# sourceMappingURL=style.css.map */