-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (108 loc) · 2.01 KB
/
style.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
121
122
123
124
:root{
--background-clara: #000000;
--background-escura: #2F4353;
--font-destaque: #FCC456;
--font-conteudo: lightgrey;
--font-azul: #004AAD
--background-card: #1C2128;
--cor-linha: #404040;
}
* {
box-sizing: border-box;
}
body{
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
background: #2F4353;
height: 100vh;
}
.app{
border: 1px solid var(--font-destaque);
margin: 40px 200px;
border-radius: 10px;
}
h1{
text-align: center;
color: var(--font-destaque);
font-size: 3rem;
margin-bottom: 80px;
}
header{
display: flex;
flex-flow: row wrap;
width: 50%;
margin: auto auto
}
input{
height: 60px;
font-size: 2rem;
width: 80%;
padding-left:10%;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
button.add{
width: 20%;
cursor: pointer;
background-color: rgb(76, 175, 76);
color: white;
border: none;
height: 60px;
font-weight: bold;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
main {
display: flex;
flex-flow: row wrap;
width: 50%;
margin: 50px auto;
}
.item{
display: flex;
flex-flow: row wrap;
justify-items: center;
align-items: center;
background: white;
border-radius: 10px;
height: 60px;
width: 100%;
box-shadow: 0 0 5px #ccc;
margin-bottom: 2%;
cursor: pointer;
}
.item.clicado{
background: rgb(207, 204, 204);
}
.item.clicado .item-nome{
text-decoration: line-through;
color: grey;
}
.item-icone{
flex: 20%;
text-align: center;
font-size: 2rem;
font-weight: bold;
}
.item-nome{
flex: 55%;
}
.item-botao{
flex: 25%;
border-radius: 10px;
}
.delete{
background: rgb(187, 52, 52);
border: none;
color: white;
height: 60px;
width: 100%;
font-weight: bold;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
cursor: pointer;
}
.mdi-check-circle{
color: rgb(76, 175, 76);;
}