-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (97 loc) · 1.76 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
* {
margin: 0;
padding: 0;
font-family: sans-serif;
}
body {
background: #e23d3d;
margin-top: 60px;
}
.head {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 40px;
padding: 15px;
background: #e23d3d;
}
.head img {
float: left;
width: 40px;
}
.head h1 {
float: left;
line-height: 45px;
margin: 0 10px;
color: white;
letter-spacing: 3px;
text-shadow: 3px 2px 10px #000000;
}
.wrapper {
width: 90%;
margin: 90px auto;
}
.wrapper img {
width: 30%;
text-align: center;
/* image center - styles*/
display: block;
margin: auto;
}
.clock {
width: 30%;
height: 50px;
background: #e9e9e9;
display: block;
margin: 30px auto;
margin-top: 10px;
font-size: 27px;
text-align: center;
border-radius: 20px;
box-shadow: 0 4px 25px 2px #000000;
}
.controlTime {
margin: 20px;
text-align: center;
}
.controlTime input {
font-family: sans-serif;
width: 15%;
height: 50px;
margin: 0 10px;
border-radius: 10px;
border: none;
transition: all 300ms;
font-size: 30px;
color: white;
letter-spacing: 3px;
box-shadow: 0 7px 25px 2px #000000;
}
.controlTime input[value="PLAY"]{
background: #2dc235;
}
.controlTime input[value="PAUSE"]{
background: #ff2323;
}
.controlTime input:hover {
transform: translateY(-7px);
}
.footer {
width: 100%;
height: auto;
background: linear-gradient(130deg, #26be2e, #12690a);
text-align: center;
border-top: 3px solid #ffffff;
padding: 5px;
font-size: 30px;
color: white;
box-sizing: border-box;
}
.footer a {
text-decoration: none;
font-size: 20px;
color: white;
font-weight: bold;
letter-spacing: 2px;
}