-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
37 lines (36 loc) · 927 Bytes
/
style.css
File metadata and controls
37 lines (36 loc) · 927 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.window button {
font-weight: 700;
color: white;
text-decoration: none;
padding: .8em 1em 1em;
border-radius: 3px;
background: rgb(64, 179, 199);
box-shadow: 0 -3px rgb(53, 167, 167) inset;
transition: 0.2s;
}
.window button:hover { background: rgb(53, 135, 167); }
.window button:active{
background: rgb(33, 124, 147);
box-shadow: 0 3px rgb(33, 79, 147) inset;
}
.popupWindowGhostEventButton{
font-weight: 700;
color: white;
text-decoration: none;
padding: .8em 1em 1em;
border-radius: 3px;
background: rgb(33, 130, 147);
box-shadow: 0 3px rgb(33, 115, 147) inset;
transition: 0.2s;
}
.window input{
padding: .8em 1em 1em;
border-radius: 3px;
background: rgba(199, 251, 255, 0.42);
box-shadow: 0 -3px rgba(53, 150, 167, 0.34) inset;
}