-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (95 loc) · 1.58 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
* {
border: 0;
margin: 0;
padding: 0;
}
body {
align-items: center;
background-color: aliceblue;
display: flex;
flex-direction: column;
}
header {
background-image: url('./images/taskMany.png');
background-size: cover;
border-radius: 4px;
height: 150px;
margin-top: 20px;
width: 280px;
}
header h1 {
color: aliceblue;
margin-top: 110px;
margin-left: 5px;
}
#tasks {
display: flex;
flex-direction: column;
margin-top: 20px;
}
#tasks input {
background-color: transparent;
border: solid 1px #403294;
border-radius: 4px;
color: rgb(82, 79, 79);
height: 20px;
text-align: center;
width: 280px;
}
button {
background-color: #403294;
border-radius: 4px;
color: rgb(239, 245, 244);
margin-top: 5px;
padding: 5px;
}
#tasks-items {
background-color:transparent;
display: flex;
justify-content: center;
width: 280px;
}
#tasks-items ol {
margin-top: 20px;
width: 80%;
}
ol li {
background-color: transparent;
color: rgb(82, 79, 79);
margin: 5px;
text-align: left;
}
.selected {
background-color: #a7ffff;
}
.completed {
text-decoration: line-through solid rgb(0, 0, 0);
}
#general-controls {
align-items: baseline;
display: flex;
flex-direction: row;
height: 40px;
}
#general-controls .buttons {
display: flex;
flex-wrap: wrap;
width: 200px;
}
.buttons button {
margin: 4px;
}
#general-controls #move {
display: flex;
flex-direction: column;
}
.icons {
width: 25px;
margin-left: 5px;
opacity: 0.7;
}
#mover-baixo, #mover-cima {
margin-top: 5px;
background-color: transparent;
border: 0;
}