-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (91 loc) · 1.85 KB
/
Copy pathstyle.css
File metadata and controls
106 lines (91 loc) · 1.85 KB
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
html,body {
padding: 0;
margin: 0;
height: 100%;
}
html {
background-image: url('background.jpg');
background-size: cover;
font-size: 30px;
}
.button {
font-weight: 700;
font-size: 22px;
text-align: center;
line-height: 44px;
background-color: white;
color: black;
border-radius: 4px;
padding: 5px 25px 5px 25px;
outline: 0 !important;
box-shadow: 0 4px 0 rgb(149, 149, 149), 0 5px 5px 1px rgba(0, 0, 0, 0.397);
transition: all 0.15s ease-in-out;
cursor: pointer;
margin-top: -4px;
}
.button:hover {
border: 2px solid rgb(156, 156, 156);
box-shadow: 0 4px 0 rgb(205, 205, 205), 0 5px 5px 1px rgba(0, 0, 0, 0.397);
}
.button:active {
margin-top: 0px;
box-shadow: none;
}
.button--close {
background-color: rgb(235, 235, 235);
}
.button--close:hover {
background-color: white;
}
.button--accept {
background-color: rgb(51, 0, 255);
color: white;
}
.button--accept:hover {
background-color: rgb(66, 75, 255);
}
.center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#modal-background {
background-color: rgba(0, 0, 0, 0.45);
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -10;
opacity: 0;
transition: opacity 0.25s ease-in-out, z-index 0.25s ease-in-out;
}
#modal-background.active {
opacity: 1;
z-index: 10;
}
#modal-box {
background-color: white;
position: fixed;
top: 50%;
left: 50%;
max-width: 800px;
min-width: 600px;
transform: translate(-50%, -50%);
padding: 25px;
z-index: -10;
opacity: 0;
transition: opacity 0.25s ease-in-out, z-index 0.25s ease-in-out;
}
#modal-box.active {
opacity: 1;
z-index: 11;
}
h1,
p {
font-family: "Indie Flower", cursive;
}
.text-right {
text-align: right;
}