-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (87 loc) · 1.49 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
.todo-container {
width: 95%;
max-width: 600px;
position: relative;
margin-left: auto;
margin-right: auto;
}
.todo-centered{
text-align: center;
}
.todo-row {
position: relative;
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
}
.todo-row > * {
display: inline;
height: 100%;
float: left;
}
.todo-height-default {
height: 30px;
}
.todo-display-block {
display: block;
}
.todo-margin-vertical {
margin-top: 10px;
margin-bottom: 10px;
}
.todo-max-width{
width: 100%;
}
.todo-tasklist {
width: 70%;
}
.todo-sidebar {
width: 25%;
position: relative;
float: right;
}
.todo-button-default {
}
.todo-task {
background-color: #b3e0ff;
}
.todo-task > input {
float: right;
cursor: pointer;
border: none;
background-color: inherit;
}
.todo-task > todo-task-title {
font-weight: bold;
}
.todo-task > todo-task-description {
display: block;
}
.todo-box-bordered {
padding: 10px;
margin-top: 10px;
border: 1px solid black;
box-sizing: border-box;
}
.todo-task-done{
background-color: #e6e6e6;
}
.todo-hidden{
width: 70%;
display: none;
}
.todo-hidden > form > input, .todo-hidden > form > textarea {
width: 100%;
}
.todo-hidden > form > input[type='submit'] {
margin-top: 30px;
width: 100px;
}
#input-form > p {
font-weight: bold;
}
@media screen and (max-width: 450px) {
.todo-tasklist, .todo-sidebar, .todo-hidden {
width: 100%;
}
}