-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (39 loc) · 805 Bytes
/
style.css
File metadata and controls
42 lines (39 loc) · 805 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
38
39
40
41
42
*{
margin: 0;
padding: 0;
}
body{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.container{
display: flex;
flex-wrap: wrap;
justify-content:center;
align-items: center;
height: 100vh;
background-color: #046582;
}
.box {
text-align: center;
}
.time{
width: 4em;
height: 4em;
background-color:#046582;
padding:1em;
margin:1em;
display:flex;
text-align:center;
justify-content:center;
border-radius:8px;
align-items:center;
box-shadow: 3px 3px 9px #2e0d4f, -3px -3px 9px #4b778d;
}
#hours, #minutes, #seconds , #am{
font: size 2em;
color:white;
}
.box > h1{
font-size :1em;
color:white;
}