-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprivecy.css
102 lines (81 loc) · 1.57 KB
/
privecy.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
97
98
99
100
101
102
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.about-header-text {
background-color: #fafdff;
color: black;
text-align: center;
padding: 100px 0 50px;
/* margin-bottom: 100px; */
}
.about-header-text h1 {
margin-bottom: 30px;
}
.about-page-instractor {
list-style: none;
display: flex;
justify-content: center;
gap: 10px;
}
.about-page-instractor li {
color: rgb(105, 102, 102);
}
.about-page-instractor li a {
text-decoration: none;
color: black;
font-weight: 700;
transition: .3s;
}
.about-page-instractor li a:hover {
color: #61B576;
}
/* Privacy policy */
#privacy-parent {
padding: 100px 120px;
}
.privacy-title-text {
margin-bottom: 30px;
}
.privacy-title-text h1 {
font-weight: 800;
margin-bottom: 20px;
}
.privacy-title-text p {
color: gray;
font-size: 1.1em;
transform: scaleY(1.2);
}
/* Mobile Responsive*/
@media screen and (max-width: 600px) and (min-width: 200px) {
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
overflow-x: hidden;
}
.about-header-text {
background-color: #fafdff;
color: black;
text-align: center;
padding: 30px 20px;
}
#privacy-parent {
padding: 30px 20px 50px;
}
.privacy-title-text {
margin-bottom: 20px;
}
.privacy-title-text h1 {
font-weight: 800;
margin-bottom: 10px;
}
.privacy-title-text p {
color: gray;
font-size: 1.1rem;
transform: scaleY(1.1);
}
}