-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
109 lines (100 loc) · 1.78 KB
/
styles.css
File metadata and controls
109 lines (100 loc) · 1.78 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
107
108
109
* {
padding: 0;
margin: 0;
}
body {
background-color: #1e2225;
/* align-items: center;
justify-content: center;
min-height: 0vh; */
}
.clock-container {
display: flex;
align-items: center;
justify-content: center;
height: 90vh;
}
.clock {
width: 400px;
height: 400px;
background: url("images/clock.png");
display: flex;
justify-content: center;
align-items: center;
border: 2px solid 1e2225;
box-shadow: -2px -15px 20px #2f3235, inset -2px -10px 20px #2f3235,
1px 40px 30px #17191b, inset 4px 30px 15px #17191b;
border-radius: 50%;
}
.bodyClass{
background-color: #fff;
}
.light {
box-shadow:-2px -4px 10px #696b6d, inset -2px -4px 10px #696b6d, 1px 11px 12px #5b5c5e, inset 4px 18px 16px #5b5c5e;
}
.clock::before {
content: "";
position: absolute;
width: 15px;
height: 15px;
background-color: #fff;
border-radius: 50%;
z-index: 100;
}
.hour-container,
.minute-container,
.second-container {
position: absolute;
display: flex;
}
.hr,
.min,
.sec {
width: 10px;
height: 200px;
justify-content: center;
}
.hr::before {
content: "";
height: 120px;
width: 10px;
position: absolute;
background-color: black;
border-radius: 40% 40% 0 0;
box-shadow: 1px 1px 5px rgb(20, 20, 20);
}
.min::before {
content: "";
height: 150px;
width: 7px;
position: absolute;
bottom: 80px;
background-color: #131516;
border-radius: 35% 35% 0 0;
box-shadow: 1px 1px 5px rgb(20, 20, 20);
}
.sec::before {
content: "";
height: 190px;
width: 4px;
bottom: 69px;
position: absolute;
background-color: #c0392b;
border-radius: 50% 50% 0 0;
box-shadow: 2px 2px 6px black;
}
.form-label{
color: white;
}
nav{
background-color: #212529;
}
nav a{
color: white;
}
.light-text{
color: black;
}
.light-nav{
background-color: #fff;
}