-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (64 loc) · 1.37 KB
/
Copy pathstyle.css
File metadata and controls
75 lines (64 loc) · 1.37 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
68
69
70
71
72
73
74
75
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
header {
background-color: rgb(19, 19, 19);
text-align: center;
color: rgb(160, 160, 160);
padding: 20px 0;
box-shadow: 1px 1px 20px 1px;
}
.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-bottom: 20px;
border-bottom: 1px solid #ccc;
display: flex;
}
.lista-produto-single h3 {
flex:1;
}
h3.price-produto {
text-align: right;
font-size: 17px;
}
.price-produto > span {
background-color: rgb(25, 29, 29);
border-radius: 20px;
padding: 5px 10px;
color: white;
}
.soma-produto {
text-align: center;
background: rgb(22, 20, 51);
background: linear-gradient(180deg, rgb(255, 255, 255) 25%, rgb(187, 187, 187) 100%);
padding: 20px;
}
button {
text-align: center;
margin-top: 10px;
margin-left: 25%;
margin-right: 25%;
padding: 10px;
font-size: 18px;
font-weight: 550;
border-radius: 12px;
border: #ccc;
box-shadow: 2px 5px 3px 0px;
color: rgb(59, 59, 59);
cursor: pointer;
}