-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy_test.css
100 lines (90 loc) · 1.71 KB
/
privacy_test.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
body {
font-family: Open sans, sans-serif;
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 1.5;
color: #1f2c52;
margin: 40px;
}
h1 {
text-align: center;
box-sizing: border-box;
background-color: #0e5ba5;
color: #fff;
padding: 1%;
margin-top: 0;
}
.btn-primary{
box-sizing: border-box;
border-radius: 5px;
background: #0e5ba5;
color: #fff;
position: relative;
overflow: hidden;
z-index: 1;
box-shadow: 0 8px 15px rgb(6 35 63 / 15%);
transition: .3s;
border: none;
padding: 18px;
margin: 25px;
}
.btn-secondary{
box-sizing: border-box;
border-radius: 5px;
background: #0fc00f;
color: #fff;
position: relative;
overflow: hidden;
z-index: 1;
box-shadow: 0 8px 15px rgb(6 35 63 / 15%);
transition: .3s;
border: none;
padding: 18px;
margin: 25px;
}
.btn-third{
box-sizing: border-box;
border-radius: 5px;
background: #ac0303;
color: #fff;
position: relative;
overflow: hidden;
z-index: 1;
box-shadow: 0 8px 15px rgb(6 35 63 / 15%);
transition: .3s;
border: none;
padding: 18px;
margin: 25px;
}
.btn {
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid transparent;
padding: 32px 32px;
font-size: 40px;
line-height: 1.5;
border-radius: 0.25rem;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
button{
cursor: pointer;
outline: 0;
color: #AAA;
}
.btn:focus {
outline: none;
}
.green{
color: green;
}
.red{
color: red;
}