-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (44 loc) · 766 Bytes
/
Copy pathstyle.css
File metadata and controls
51 lines (44 loc) · 766 Bytes
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background-color: grey;
}
.formulario{
border-radius: 25px;
font-family: 'Unbounded', cursive;
display: flex;
flex-direction: column;
max-width: 600px;
background-color: white;
padding: 1rem;
margin-bottom: 2rem;
margin-top: 2rem;
}
.logo{
width: 100%;
padding: 1rem;
}
footer{
padding: 1rem;
background-color: white;
display: flex;
flex-direction: column;
text-align: center;
align-items: center;
font-family: 'Unbounded', cursive;
}
footer > a{
text-decoration: none;
color: grey;
transition: .5s;
}
footer > a:hover{
text-decoration: underline;
color: red;
}
.logo-foot{
width: 300px;
}