-
Notifications
You must be signed in to change notification settings - Fork 3
/
lista_compras.css
79 lines (66 loc) · 1.1 KB
/
lista_compras.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
* {
margin:0;
padding:0;
}
input[type="text"], input[type="number"] {
border: 1px solid #000;
padding: 4px 12px;
border-radius: 8px;
height: 35px;
width: 60%;
}
input[type="number"] {
width: 20%;
}
button {
border: 1px solid #000;
padding: 4px 12px;
border-radius: 8px;
height: 35px;
background-color: #8EC16D;
}
body {
font: 15px/1.3 'Open Sans', sans-serif;
color: #5E5B64;
text-align: center;
}
form {
background-color: #61A1BC;
border-radius: 2px;
box-shadow: 0 1px 1px #CCC;
width: 600px;
padding: 35px 60px;
margin: 80px auto;
}
form h1 {
color: #FFF;
font-size: 64px;
font-family: 'Cookie', cursive;
font-weight: normal;
line-height: 1;
text-shadow: 0 3px 0 rgba(0,0,0,0.1);
}
form ul {
list-style: none;
color: #FFF;
font-size: 20px;
font-weight: bold;
text-align: left;
margin: 20px 0 15px;
}
form ul li {
padding: 20px 30px;
background-color: #E35885;
margin-bottom: 8px;
box-shadow: 0 1px 1px rgba(0,0,0,0.1);
cursor: pointer;
}
form ul li i {
float: right;
}
form ul li img {
padding-bottq: 2px;
}
form ul li.comprado {
background-color: #8EC16D;
}