-
Notifications
You must be signed in to change notification settings - Fork 0
/
telacompra.css
120 lines (107 loc) · 1.98 KB
/
telacompra.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#scr-compra {
width: 100%;
height: 100%;
position: fixed;
background-color: rgba(0, 0, 0, 0.75);
left: 0;
top: 0;
display: none;
justify-content: flex-end;
color: #282828;
}
#scr-compra > div {
width: 50%;
height: 100%;
background-color: white;
border-bottom-left-radius: 20px;
border-top-left-radius: 20px;
padding: 50px;
}
#scr-compra h2 {
width: 100%;
font-size: 3em;
padding-bottom: 10px;
border-bottom: 3px solid black;
}
#scr-compra h3 {
width: 100%;
font-size: 2em;
padding: 30px 25px 0px;
}
#btnFecha {
position: absolute;
top: 0;
right: 0;
margin: 40px 40px;
padding: 10px 25px;
font-size: 2.7em;
border: none;
background-color: white;
font-family: 'Nunito';
color: #282828;
}
#btnFecha:hover {
cursor: pointer;
background-color: #FAE5DB;
border-radius: 100%;
}
#scr-compra figure {
display: flex;
flex-direction: row;
}
#scr-compra img {
width: 35%;
margin: 25px 5px 5px;
}
#scr-compra figcaption {
font-size: 1.3em;
margin: 50px 5px 5px;
padding: 20px;
background-color: #FAE5DB;
border-radius: 20px;
}
/* PARTE DE QUANTIDADE */
#qnt {
display: flex;
flex-direction: row;
margin-top: 25px;
}
#qnt label {
flex-direction: column;
}
#btnQtd {
display: flex;
flex-direction: row;
font-size: 1.5em;
border: none;
margin-top: 10px;
}
#btnQtd:hover {
border: none;
background-color: white;
cursor: pointer;
}
#btnQtd div {
width: 30px;
height: 30px;
padding: 5px;
border-radius: 5px;
background-color: #FAE5DB;
display: flex;
align-items: center;
justify-content: center;
}
#btnQtd div:hover {
background-color: #E3C3BC;
}
#qnt p {
width: 70px;
height: 70px;
margin: 5px 0px 0px 10px;
font-size: 2em;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #FAE5DB;
border-radius: 3px;
}