-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (76 loc) · 1.32 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
*{
margin: 0px;
padding: 0px;
}
body{
}
.box{
height: 100px;
width: 300px;
background-color: white;
margin: 50px auto;
position: relative;
top: 400px;
border-radius: 10px;
box-shadow: 5px 5px 10px 0px #000000;
}
#cbox{
height: 30px;
width: 200px;
background-color: red;
position: absolute;
top: 50px;
left: 50px;
text-align: center;
font-family: serif;
font-size: 25px;
color: #fff;
border-radius: 10px;
padding: 5px 0px 0px 0px;
}
#tbox
{
/* height: 40px;
width: 200px;
position: absolute;
top: 10px;
left: 50px;*/
text-align: center;
font-size: 30px;
font-family: serif;
position: relative;
top: 10px;
}
.main {
position: relative;
content: center;
height: 100px;
width: 99%;
}
.clock {
position: relative;
top: 30%;
left: 20%;
right: 20%;
height: 50px;
width: 60%;
background: #3042FF;
color: #fff;
font-family: Arial, sans-serif;
font-size: 16px;
display: flex;
box-shadow: 5px 5px 10px #fff;
border: 2px solid #FFFFFF;
border-radius: 10px ;
}
.hours,.minutes,.seconds,.dot1,.dot2{
position: relative;
top: 10px;
margin-left: 19px;
font-size: 30px;
}
.hours span,.minutes span,.seconds span,.dot1 span,.dot2 span{
background-image: linear-gradient(#DF3400,#DF7A00);
color: transparent;
background-clip: text;
}