-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmycustom.css
79 lines (69 loc) · 1.08 KB
/
mycustom.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
* {
box-sizing: border-box;
font-family: sans-serif;
line-height: 1.4;
color: #333;
}
a {
color: #2196f3;
}
h3 a {
text-decoration: none;
}
body {
font-size: 18px;
}
body.dashboard {
background: #3bc1cb;
padding: 5px 25px;
}
.container {
width: 900px;
margin: 80px auto;
}
header {
text-align: center;
}
.wrapper {
padding: 20px;
border: 1px solid #c5c5c5;
}
.wrapper + .wrapper {
margin-top: 30px;
}
.wrapper .privacyPolicySubHeader {
display: flex;
align-items: center;
}
.wrapper .privacyPolicySubHeader svg {
width: 30px;
height: 30px;
margin-right: 10px;
color: #333;
}
.make_data_privacy {
display: inline-block;
border: none;
padding: 10px 20px;
border-radius: 10px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
cursor: pointer;
}
.nota {
font-size: 16px;
line-height: 1.3;
margin-top: 10px;
}
.nota * p {
margin: 8px 0;
}
/** Dashboard **/
header.dash_header {
display: flex;
justify-content: flex-start;
}
aside {
width: 200px;
}
section.dash_section {
}