-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (95 loc) · 1.49 KB
/
Copy pathstyle.css
File metadata and controls
114 lines (95 loc) · 1.49 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100vh;
background-color: #ff7134;
gap: 30px;
}
p, b {
font-size: 14px;
}
.btn {
padding: 7px;
color: #e7d9d9;
border-radius: 7px;
}
.red {
background-color: red;
border-color: red;
}
.blue {
background-color: blue;
border-color: blue;
}
#container {
border-radius: 10px;
background-color: #f5f5b8;
overflow: hidden;
}
#content {
padding: 20px;
}
#hud {
background-color: #1c0303;
color: #f5f5b8;
font-size: 19pt;
padding: 20px;
}
#hcontrols {
display: flex;
gap: 10px;
justify-content: space-between;
}
#new-task {
padding: 10px;
border-radius: 7px;
border: none;
outline-color: blue;
width: 80%;
}
#add {
width: 15%;
}
#tasks {
margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
border-top: 1px solid #706b6b;
}
.line-through {
text-decoration: line-through;
}
.task {
display: flex;
justify-content: space-between;
padding-bottom: 10px;
margin-bottom: 10px;
color: #706b6b;
border-bottom: 1px solid #706b6b;
}
.fa-trash {
cursor: pointer;
}
.left, .right {
display: flex;
gap: 5px;
}
#fcontrols {
display: flex;
gap: 10px;
justify-content: space-between;
}
.teste {
background-color: transparent;
outline: none;
border: none;
width: 300px;
}