-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
101 lines (85 loc) · 1.53 KB
/
main.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
body {
background-color: #232323;
padding: 0px;
margin: 0px;
color: white;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#cabecera {
background-color: #232323;
width: 90vw;
margin: auto;
height: 30vh;
}
h1 {
font-size: 4rem;
}
#cupones {
background-color: #E5E5E5;
margin: auto;
display: flex;
justify-content: center;
flex-wrap: wrap;
width: 80%;
padding: 5% 10%;
overflow: hidden;
}
.cupon {
margin: 1rem;
width: 30%;
height: 10rem;
display: flex;
position: relative;
justify-content: left;
background-color: #232323;
}
.zigzag::before {
content: "";
border: 5px dotted #E5E5E5;
border-style: dotted none;
position: absolute;
top: -2.5px;
bottom: -2.5px;
left: -2.5px;
right: -2.5px;
}
.points {
border: 1px dotted white;
padding: 1rem;
margin: 0.5rem;
width: -webkit-fill-available;
display: flex;
flex-direction: column;
}
.titulo {
font-weight: 700;
font-size: 1.2rem;
}
.subtitulo {
font-weight: 400;
font-size: 1rem;
}
.codigo {
text-align: center;
width: fit-content;
padding: 0.3rem;
margin: 0.3rem auto;
background-color: rgba(245, 245, 245, 0.25);
flex-grow: 2;
}
.info {
font-weight: 300;
font-size: 0.7rem;
}
.marca {
font-weight: 500;
}
#GLOVO {
color: yellow;
}
#UBEREATS {
color: green
}
#CABIFY {
color: blueviolet
}