-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (51 loc) · 930 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
53
54
55
56
57
58
59
60
*{
margin:0;
padding:0;
box-sizing: border-box;
}
header{
background-image: linear-gradient(
to right,
hsla(0, 91%, 59%, 0.8) 0,
red 50%,
black 100%);
text-align: center;
color:#0b0909;
padding:20px 0;
}
input {
border-radius: 30px;
}
.lista-cadastro{
display: flex;
margin:20px 0;
padding:0 20px;
}
.lista-cadastro input[type=text]{
flex:1;
height:40px;
padding-left: 20px;
}
.lista-produto-single{
padding:10px 0;
margin:20px 0;
border-bottom:3px solid #ccc;
display: flex;
}
.lista-produto-single h3{
flex:1;
padding:0 20px;
}
h3.price-produto{
text-align: right;
font-size: 17px;
}
h3.price-produto > span{
background-color: hsl(122, 96%, 27%);
padding:8px 10px;
border-radius:20px;
color:white;
}
.soma-produto{
margin:17px;
}