-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (47 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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
@font-face {
font-family: digital-7;
src: url('digital-7.ttf');
}
body{
display: flex;
align-items: center;
justify-content:center ;
height: 100vh;
width: 100vw;
background-color: #033695;
}
.container{
background:rgba(128, 128, 128, 0.714);
height: 300px;
width: 400px;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
flex-direction: column;
border-radius: 20px;
}
.container h1{
text-transform: uppercase;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 30pt;
text-shadow:rgb(212, 255, 0) 1px 1px 10px;
}
.container .clock{
/* background-color: #fff; */
border: solid 2px #fff;
color: #fff;
width: 350px;
margin: 20px;
font-weight: 400px;
font-size: 50px;
padding: 6px;
user-select: none;
text-shadow:rgb(255, 0, 166) 1px 1px 10px;
box-shadow: rgb(255, 0, 166) 1px 1px 10px;
}