-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (67 loc) · 1.02 KB
/
style.css
File metadata and controls
67 lines (67 loc) · 1.02 KB
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
61
62
63
64
65
66
67
*{
margin: 0;
padding: 0;
}
body{
background: url(imagens/fundo.jpg);
background-attachment: fixed;
background-size: 100%;
color: white;
font-family: Arial, Helvetica, sans-serif;
}
p{
font-size: 12px;
color: yellow;
text-align: center;
}
h1{
text-align: center;
color: orange;
padding: 10px;
font-size: 50px;
}
h2, h3{
text-align: center;
padding: 10px;
color: #f1f1f1;
}
.nome-loja{
color: red;
}
fieldset{
margin: 20px;
padding: 15px;
border: 2px solid orange;
}
legend{
padding: 3px;
text-align: center;
color: #f1f1f1;
font-size: 18px;
}
form{
text-align: center;
color: #f1f1f1;
font-size: 18px;
}
input{
margin-top: 5px;
}
.dados{
background: none;
color: white;
border: 1px solid orange;
padding: 5px;
}
.botao{
background: none;
border: 2px solid yellow;
padding: 5px;
margin-left: 5px;
margin-right: 5px;
color: orange;
}
.botao:hover{
background: orange;
color: black;
}