-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (45 loc) · 824 Bytes
/
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body,html{
background: #787a7a;
width: 100%;
height: 100%;
margin: auto auto ;
display: flex;
justify-content: center;
align-items: center;
font-size: 25px;
}
main{
background: #000000;
width: 240px;
height: 350px;
padding: 10px 10px;
border-radius: 15px;
}
button{
font-size: 25px;
width: 50px;
height: 50px;
margin-bottom: 5px;
border-radius: 15px;
background: #f5ba3c;
border: none;
}
button:hover{
background: #ffffff;
}
section.tela{
background: #ffffff;
height: 50px;
padding-top: 10px;
padding-left: 10px;
margin-bottom: 10px;
border-radius: 15px;
}
footer button{
width: 106px;
}