-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
78 lines (78 loc) · 1.52 KB
/
estilo.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
/*
💓HRM Extension - Heart Rate Monitor
Chrome Extension Project
Projeto de uma extensão Chrome informando em tempo real a taxa de frequência cardiaca conectada via Bluetooth.
Por Gustavo Kennedy Renkel
*/
/*
Estilo do Container e Textos
*/
#container {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
background-color: #fff;
font-family: Roboto;
text-align: center;
}
#container img {
padding-top: 70px;
}
h1 {
position: absolute;
top: 20%;
left: 0;
right: 0;
text-align: center;
margin: 0 auto;
color: #333;
font-size: 48px;
font-family: 'Roboto';
overflow-x: visible;
cursor: default;
padding: 0px 50px;
-webkit-user-select: none;
}
p {
position: absolute;
bottom: 35%;
left: 0;
right: 0;
text-align: center;
margin: 0 auto;
color: rgb(158, 158, 158);
font-size: 14px;
font-family: 'Roboto';
overflow-x: visible;
cursor: default;
padding: 0px 0;
-webkit-user-select: none;
}
/*
Estilo do texto de Status
*/
#textoStatus {
position: absolute;
bottom: 40%;
left: 0;
right: 0;
text-align: center;
margin: 0 auto;
color: #e82727;
font-size: 28px;
width: 400px;
overflow-x: visible;
cursor: default;
padding: 0px 0px;
-webkit-user-select: none;
}
/*
Estilo das Waves
*/
#waves {
width: 100%;
height: 100%;
display: block;
}