-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (45 loc) · 939 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;
}
body{
background-color: #f85741;
}
.header{
background-color: #1e1801;
font-family: sans-serif; color: rgb(223, 223, 223);
display: flex;
align-items: center;
justify-content: center;
padding-top: 1em;
padding-bottom: 2em;
}
.container{
margin-top: 10%;
margin-bottom: 10%;
display: flex;
flex-flow: column wrap;
align-items: center;
justify-content: center;
}
.rodape{
background-color: #1e1801;
padding-bottom: 90px;
padding-top: 40px;
display: flex;
align-items: center;
justify-content: center;
font-family: sans-serif; color: azure;
font-weight: bold;
}
button{
background-color: #f39708;
padding: 1em 1em;
margin: 0.5em;
border: 0;
border-radius: 15%;
}
button:hover{
background-color: #dacdac;
cursor: pointer;
transition: 0.3s;
}