-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.css
76 lines (65 loc) · 1.05 KB
/
main.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
@font-face {
font-family: "digital-clock-font";
src: url(digital-7.ttf);
}
.tablo {
width: 600px;
height: 300px;
background-color: black;
}
.date,
.time {
font-family: "digital-clock-font";
color: yellow;
}
.date {
font-size: 44px;
position: absolute;
left: 112px;
top: 55px;
}
.time {
font-size: 140px;
position: absolute;
left: 105px;
top: 85px;
display: flex;
justify-content: center;
}
.date div,
.time div {
display: inline;
}
/* ............................. */
a {
color: fff;
text-decoration: none;
}
a:hover {
color: #16d9e3;
}
.start {
font-size: 40px;
}
.screen {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 300px;
width: 300px;
background-color: beige;
}
.hidden {
display: none;
}
.board {
position: relative;
width: 100px;
height: 90px;
background: linear-gradient(118.38deg, #4186da -4.6%, #485563 200.44%);
box-shadow: -8px -8px 20px #4f88c9, 10px 7px 20px #475462;
border-radius: 40px;
overflow: hidden;
cursor: pointer;
}