-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimer.css
52 lines (40 loc) · 1007 Bytes
/
timer.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
@charset "UTF-8";
/* Elementos da tag <body> */
body{
background-color: rgb(23, 32, 44);
color: rgb(255, 255, 255);
font: normal 14pt Arial;
text-align: center;
}
/* Elementos com ID "main_section" */
#main_section{
background-color: rgb(255, 255, 255);
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.600);
border-radius: 10px;
color: rgb(0, 0, 0);
width: 500px;
padding: 5px;
margin: auto;
}
/* Elementos com ID "hours", "minutes" e "seconds" */
#hours, #minutes, #seconds{
cursor: auto;
}
/* Elementos com ID "start" */
#start{
background: rgb(23, 32, 44);
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.400);
border: 0;
border-radius: 5px;
width: 80px;
height: 35px;
margin-top: 5px;
color: rgb(255, 255, 255);
font-size: 12pt;
cursor: pointer;
}
/* Elementos com ID "start" no estado da pseudoclasse "hover" */
#start:hover{
background: rgb(64, 76, 90);
box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.400);
}