-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
96 lines (79 loc) · 1.17 KB
/
styles.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
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
html {
font-family: 'Roboto', sans-serif;
font-size: 15px;
color: white;
}
body {
background-image: url('./assets/background.jpg');
background-size: cover;
}
.overlay {
height: 100vh;
width: 100vw;
background-color: rgba(0, 0, 0, 0.75);
display: grid;
justify-items: center;
align-items: center;
}
main {
display: grid;
justify-items: center;
grid-gap: 3rem;
}
h1 {
font-family: 'Corben', cursive;
font-size: 7rem;
}
h4 {
text-align: center;
font-weight: 400;
font-size: 1.5rem;
}
a {
text-decoration: none;
}
.qr-contact-details {
width: 200px;
border-radius: 10px;
}
.button {
color: white;
font-size: 1.2rem;
border: 1px solid #ddf45b;
border-radius: 10px;
padding: 1rem 1.5rem;
}
.button:hover {
background-color: #c6f91f;
color: #141115;
}
.social {
height: 3rem;
margin: 1rem;
}
#blog img {
border: 1px solid #333;
border-radius: 5px;
}
footer span a {
color: #ccc;
}
@media (max-width: 568px) {
h1 {
font-size: 3.5rem;
}
.button {
font-size: 1rem;
}
.qr-contact-details {
width: 150px;
}
.social {
height: 2rem;
}
}
@media (max-width: 400px) {
h4 {
font-size: 1rem;
}
}