-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (76 loc) · 1.42 KB
/
style.css
File metadata and controls
91 lines (76 loc) · 1.42 KB
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
@font-face {
font-family: Titular;
src: url(./fontes/DigitaltsOrange-nRAPg.ttf);
}
body {
background-color: rgba(228, 184, 154, 0.482);
}
header {
width: 460px;
padding: 2px 10px 10px;
background-color: rgb(107, 184, 169);
}
h1 {
font-family: Titular;
text-align: center;
color: rgb(141, 43, 8);
}
main, footer {
width: 460px;
min-height: 100px;
}
ol {
display: inline-block;
position:relative;
box-shadow: 10px 10px 10px 5px black;
width: 250px;
margin: 10px;
margin-left: 80px;
padding: 5px 20px 10px 40px;
background-image: url(./imagens/folha_pautada.png);
background-repeat: no-repeat;
background-size: 109% 125%;
background-position: -20px -28px;
}
li {
margin-left: 10px;
}
#texto-tarefa {
display: inline-block;
width: 90%;
}
#imgLapis {
position: absolute;
max-width: 60px;
margin-left: 5px;
}
#mover-cima, #mover-baixo {
display: inline-block;
position: absolute;
top: 50%;
width: 34px;
height: 34px;
margin-left: 10px;
background-position: -2px 0px;
}
#mover-cima {
background-image: url(./icones/Arrow_Up_36952.png);
}
#mover-baixo {
background-image: url(./icones/Arrow_Down_36955.png);
}
#remover-selecionado {
width: 60%;
margin-top: 5px;
margin-left:15%;
margin-right: 25%;
}
.completed {
text-decoration: line-through solid rgb(0, 0, 0);
}
.marcado {
background-color: rgb(128, 128, 128);
}
.bordaEstlizadaBtn {
border-radius: 100%;
}