-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
68 lines (59 loc) · 1.27 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
/* Designed by Simel */
@import url('https://fonts.googleapis.com/css?family=Outfit');
:root {
--body-font: "Outfit", sans-serif;
--white: hsl(0, 0%, 100%);
--light-gray: hsl(212, 45%, 89%);
--grayish-blue: hsl(220, 15%, 55%);
--dark-blue: hsl(218, 44%, 22%);
}
* {
box-sizing: border-box;
margin: 0px;
padding: 0px;
}
body{
font-family: var(--body-font);
font-weight: 400, 700;
background-color: var(--light-gray);
max-width: 1440px;
font-size: 15px;
display: flex;
justify-content: center;
align-items: center;
}
#container {
background-color: var(--white);
display: flex;
border-radius: 9px;
flex-direction: column;
padding: 10px 15px;
text-align: center;
width: 20%;
margin-top: 10%;
}
#container > h2 {
font-weight: bold;
margin-bottom: 8%;
text-align: left;
text-indent: 0.2em;
font-size: 21px;
font-family: Outfit;
color: var(--dark-blue);
}
#container > p{
font-weight: 590;
margin-bottom: 5%;
font-family: Outfit;
color: var(--grayish-blue);
}
#qr-code-image{
border-radius: 8px;
margin-bottom: 10%;
}
@media screen and (max-width: 1020px) {
#container {
margin-top: 10%;
width: 5rem;
}
}