-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathstyle.css
69 lines (57 loc) · 1.05 KB
/
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
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
/* Importing google fonts */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
*{
padding: 0;
margin: 0;
}
body{
background: #272c33;
}
.container{
max-width: 1200px;
margin: 20px auto;
padding: 30px;
}
#heading{
text-align: center;
color: aqua;
font-family: 'Ubuntu', sans-serif;
font-size: 68px;
}
.clock-box{
height: 250px;
width: 500px;
margin: 110px auto;
background: #3f4652;
box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.315);
color: aqua;
display: flex;
flex-direction: column;
justify-content: center;
}
.dateDay{
display: flex;
justify-content: space-between;
margin: 1px 15px;
}
#date{
margin-top: 7px;
font-family: 'Ubuntu', sans-serif;
}
#day{
margin-top: 7px;
font-family: 'Ubuntu', sans-serif;
}
#time{
margin: auto;
font-size: 62px;
font-family: 'Ubuntu', sans-serif;
}
h3{
text-align: center;
color: rgba(0, 255, 255, 0.7);
font-family: 'Ubuntu', sans-serif;
}
h3 a{
color: aqua;
}