-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
44 lines (39 loc) · 1003 Bytes
/
style.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
body {
background-image: url("background.jpg");
display: flex;
justify-content: center;
align-items: center;
}
.mainContainer {
padding: 0;
text-align: center;
font-family: "Orbitron", sans-serif;
color: black;
font-size: 130px;
border-radius: 50px;
box-shadow: 3px 3px 7px rgba(255, 255, 255, 0.05), 3px 3px 7px rgba(0, 0, 0, 0.5);
-webkit-box-reflect: below 0px linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4));
outline: none;
}
button {
padding: 0;
width: 150px;
height: 40px;
border-radius: 40px;
background-color: rgba(14, 0, 0, 0.4);
color: black;
border-style: none;
cursor: pointer;
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5), 3px 3px 5px rgba(0, 0, 0, 0.5);
}
button:focus {
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5), -3px -3px 7px rgba(0, 0, 0, 0.5);
outline: none;
}
button:active {
border-style: none;
}
#dateContainer {
font-size: 50px;
text-align: center;
}