-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.css
166 lines (142 loc) · 2.59 KB
/
privacy.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
width: 100%;
height: 100vh;
font-size: 16px;
font-family: 'Baskervville',sans-serif;
position: relative;
}
.container {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items:center;
margin: auto;
}
/*Navigation Bar*/
.nav-bar {
padding: 50px 0px;
width: 100%;
display: flex;
justify-content: space-between;
margin-bottom: 60px;
}
.logo{
display: flex;
}
.logo h2{background: -webkit-linear-gradient(#782c00 40%,#FAF7F6);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
margin-left: 47px;
}
.logo img{
width:55px;
position: absolute;
}
/* navigation links */
.nav-links {
width:70%;
height:100%;
margin:10px;
font-weight: bold;
}
#signup{
color: white;
background-color: #782c00;
width:50px;
}
#login, #signup{
border-radius: 3px;
padding: 5px 15px;
}
#login{
border:2px solid #782c00;
color :black;
}
.nav-links ul {
display:flex;
justify-content: space-around;
list-style-type: none;
}
.nav-links ul li a, .side-bar a{
text-decoration: none;
width: 100%;
font-size: 16px;
color: black;
}
.nav-links ul li a {
margin-left: 10px;
}
/* side bar section */
.side-bar ul{
list-style-type: none;
background-color: white;
position: absolute;
padding: 10px;
top: 120px;
right: 10px;
line-height: 40px;
border-radius: 4px;
}
.side-bar li:hover{
border-bottom:1px solid white;
cursor: pointer;
}
.side-bar{
display: none;
font-weight: bold;
}
#menu{
position: absolute;
z-index: 1;
top: 50px;
right:10px;
color: red;
}
/* Content part of the privacy page */
main {
width: 90%;
padding: 0px 0px;
}
.content h2{
padding: 40px 0px;
}
p,ul {margin-bottom: 40px;}
ul{
margin-left: 35px;
}
h3 {margin-bottom: 25px;}
@media(max-width:659px){
.nav-links{display: none;}
#menu {
cursor: pointer;
width: 40px;
margin:5px 10px;
}
.logo img{
margin-top: 0px;
}
}
@media(min-width:660px){
.hide-sidebar{display: none;}
}
@media(max-width:670px){
.nav-links ul li a{ margin-right: 5px;}
.nav-links ul li{font-size:12px;}
.nav-links{width:70%;}
}
@media(max-width:800px){
.nav-links{
width: 70%;
}
.nav-links ul li a{
margin-left: 10px;
}
#signup{
padding: 2px;
}
}