-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.css
More file actions
102 lines (102 loc) · 1.98 KB
/
page.css
File metadata and controls
102 lines (102 loc) · 1.98 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
height: 100vh;
background-color: #fcfcfc;
font-family: sans-serif;
font-size: 1.2rem;
color: rgb(143,143,143);
}
.container{
height: 100%;
min-height: 80vh;
width: 80vw;
max-width: 600px;
margin: 20px auto;
border: 2px solid white;
box-shadow: 5px 5px 15px -1px rgba(0,0,0,0.5);
border-radius: 10px;
overflow: scroll;
}
h3{
color: white;
margin: 4px;
}
.input-ui{
background-color: #c59aa0;
background-image: linear-gradient(315deg, #cf929a, #4595a3 74%);
text-align: center;
height: 120px;
padding: 15px;
margin-bottom: 1px;
}
input{
padding: 6px;
font-size: 20px;
border: none;
border-radius: 3px;
height: 40px;
}
input:focus{
outline: none;
border: solid 1px lightslategray;
}
input[type=submit]{
background-color: rgb(143,161,179);
color: white;
border-radius: 3px;
}
input[type=submit]:hover{
background-color: white;
color: rgb(143,161,179);
transition: all 500ms ease-in-out;
}
.output-ui{
min-height: 520px;
background-color: white;
}
.output-ui ul{
list-style: none;
padding: 20px;
}
.output-ui ul li{
margin: 0.8rem;
border-bottom: solid 0.1px rgb(214,214,214);
display: flex;
justify-content: space-between;
}
a{
text-decoration: none;
margin-left: 15px;
cursor: pointer;
}
a:hover{
opacity: 0.6;
color: rgba(12,224,104,0.966);
}
.filter{
background-color: rgb(247,247,247);
margin: 2%;
}
.msg{
background-color: rgb(247,247,247);
height: 200px;
color: gray;
margin: 2rem;
padding-top: 4rem;
text-align: center;
}
.clear-tasks{
background-color: lightcoral;
color: white;
padding: 10px;
font-size: 20px;
border-radius: 5px;
}
.clear-tasks:hover{
color: lightcoral;
background: rgb(247,247,247);
}