-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodos.css
128 lines (98 loc) · 1.45 KB
/
todos.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
125
126
127
128
body {
background: #225;
}
h1{
color: #fff;
}
div#app {
padding: 50px;
padding-bottom: 130px;
background: #733;
transition: opacity, background 5s;
border-radius: 25px;
opacity: 0.6;
box-shadow: 20px 20px 15px #225;
}
div#app:hover{
opacity: 1;
background: #054;
}
div#entrada {
position: -webkit-sticky; /* Safari */
position: sticky;
top:10;
}
div#entrada input, button {
font-size: 18px;
border-radius: 5px;
padding: 10px;
}
div#entrada input {
width: 70%;
}
.zero{
background: #fc96;
margin: 5px;
border-radius: 15px;
box-shadow: 20px 20px 25px #789;
}
pre {
vertical-align: top;
margin: 10px;
display: inline-block;
width: 80px;
padding: 5px;
margin: 10px;
margin-left: -40px;
font-weight: bold;
background: #ada;
color: #a0a;
list-style-type: none;
border-radius: 25px;
border: 2px solid #5d5;
}
input[name=date] {
vertical-align: top;
margin: 10px 0px;
display: inline-block;
text-align: center;
padding: 6px;
border-radius: 5px;
font-weight: bold;
}
.tomorrow{
background: #5f7;
}
.yesterday {
background: #f75;
}
.today {
background: #57f;
}
li {
width: 75%;
display: inline-block;
padding: 10px 20px;
margin: 10px;
font-weight: bold;
background: #ada;
color: #a0a;
list-style-type: none;
border-radius: 25px;
border: 2px solid #5d5;
text-align: justify;
}
li a{
float: right;
margin-right: 15px;
color: #f00;
text-decoration: none;
}
p {
float: right;
text-align: right;
font-size: 14px;
margin-top: 40px;
color: #f99;
font-weight: bold;
}