-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
84 lines (70 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
background-color: #fff;
}
header {
margin-top: 1.7rem;
}
.heading {
text-align: center;
font-size: 36px;
font-weight: 600;
color: #000;
display: none;
}
.pdfcontainer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 2rem;
}
.pdfcontainer .pdfItem {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-bottom: 2.3rem;
}
.pdfDoc {
height: 80lvh;
width: 85vw;
border: 2px solid #000;
}
.pdfItem p {
margin-top: 1rem;
font-size: 22px;
color: #000;
font-weight: 570;
}
@media screen and (max-width: 768px) {
.heading {
font-size: 27px;
display: none;
}
.pdfItem p {
font-size: 19px;
}
}
.privacyContainer {
display: flex;
flex-direction: column;
margin: 2rem 1.5rem;
font-size: 16px;
color: #000;
}
.privacyContainer p {
font-size: 14px;
line-height: 17px;
padding-bottom: 0.7rem;
}
.privacyContainer h6 {
margin-top: 1rem;
font-size: 15px;
line-height: 18px;
font-weight: 600;
padding-bottom: 1rem;
}