forked from pedro-afk/IMC-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (53 loc) · 1.07 KB
/
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
53
54
55
56
57
58
59
60
body{
height: 0 auto;
width: 0 auto;
background-color:black;
background: url('../img/fritas.jpg') no-repeat;
}
.content{
padding: 20px;
background: #fff;
color: #303030;
border-radius: 15px;
width: 400px;
height: 480px;
margin-right: auto;
margin-top: 70px;
font-family: Arial, Helvetica, sans-serif;
}
.content h1{
font-size: 35px;
line-height: normal;
}
.content p{
font-size: 14px;
}
.content form{
padding: 10px;
flex-direction: column;
margin-top: 30px;
}
.content form input{
border-radius: 8px;
border: 0.5px solid #303030;
padding: 10px;
display: flex;
width: 7cm;
margin-bottom: -10px;
height: 0.8cm;
}
.btn{
border: 0;
width: 6cm;
height: 1.2cm;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 20px;
font-weight: 20px;
border-radius: 10px;
color: #fff;
background: #F71E1E;
cursor: pointer;
}
.btn:hover{
background: #F73E1E;
}