-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (61 loc) · 1.36 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
*{
margin: 0px;
padding: 0px;
font-family: 'Arial', sans-serif;
}
html,body{
display: grid;
justify-items: center;
background: #000;
}
.container1{
height: 150px;
width: 500px;
position: relative;
background: linear-gradient(135deg, #14ffe9, #ffeb3b, #ff00e0);
border-radius: 10px;
}
.container1 .dispClock{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #1b1b1b;
height: 135px;
width: 485px;
border-radius: 6px;
text-align: center;
}
.container1 .dispClock #time{
line-height: 135px;
color: #fff;
font-size: 50px;
font-weight: 600;
letter-spacing: 1px;
font-family: 'Times New Roman', sans-serif;
background: linear-gradient(135deg, #14ffe9, #ffeb3b, #ff00e0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.container2{
height: 60px;
width: 200px;
position: relative;
margin: 20px;
padding: 10px;
right: 20px;
background:#fff;
border-radius: 10px;
}
.decrement{
position: relative;
font-family: 'Arial', sans-serif;
color: #000;
}
.buttons{
position: absolute;
font-family: 'Arial', sans-serif;
margin: 5px;
left: 5px;
color: #000;
}