-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilos.css
59 lines (53 loc) · 988 Bytes
/
estilos.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
/* BODY DA PÁGINA */
body {
font-family: 'Franklin Gothic', sans-serif;
background-color: #1f1f1f;
color: #fff;
}
.title {
position: absolute;
top: 20px;
left: 50%;
transform: translateX(-50%);
font-weight: bold;
}
/* Retangulo do relógio */
.rectangle {
width: 400px;
height: 100px;
margin: auto;
margin-top: 100px;
background-color: #fff;
border-radius: 15px;
box-shadow: 0px 0px 10px #888888;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
/* Seq da página index */
.container {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
}
.button {
background-color: #00bcd4;
color: #1f1f1f;
font-weight: bold;
border: none;
border-radius: 20px;
padding: 10px 20px;
margin-top: 100px;
cursor: pointer;
box-shadow: 0px 0px 10px #888888;
}
p {
font-size: 18px;
font-weight: bold;
}
/* clock */
#clock {
color: #1f1f1f;
}