-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
81 lines (76 loc) · 1.55 KB
/
styles.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
header{
width: 100%;
height: 50px;
text-align: center;
font-family: 'Oswald', sans-serif;
font-weight: 500;
}
body{
background-image: linear-gradient(to bottom, yellow, #FFD700, rgb(255, 145, 0));
background-repeat: no-repeat;
height: 100vh;
}
.lista-cadastro{
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin: 50px;
gap: 50px
}
.lista-cadastro input{
font-size: 24px;
border-radius: 1rem;
border-style:dashed;
padding: 5px;
}
.lista-cadastro input[type="submit"]{
background-color: rgb(83, 230, 108);
border-radius: 1rem;
border: none;
width: 150px;
height: 40px;
transition: 0.4s;
cursor: pointer;
}
.lista-cadastro input[type="submit"]:hover{
background-color: rgb(7, 223, 43);
}
.lista-produtos{
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.lista-produto-single{
display: flex;
flex-direction: row;
Gap: 100px;
}
.soma-produto{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
button{
background-color: rgb(83, 230, 108);
border-radius: 1rem;
border: none;
width: 80px;
height: 30px;
transition: 0.4s;
cursor: pointer;
justify-content: center;
align-items: center;
}
button:hover{
background-color: rgb(7, 223, 43);
}