-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (83 loc) · 1.26 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
html{
height: 100%;
/* background-image: linear-gradient(#ff6161, #ff768c);*/
background-repeat: no-repeat;
font-family: sans-serif;
background-size: auto;
background-color: #0f222d;
}
.main{
width: 400px;
display: flex;
justify-content: center;
flex-direction: column;
margin: auto;
}
h1{
text-align: center;
color: #ff6161;
}
form{
background-color: #fff;
padding: 15px;
}
input[type="text"]{
width:310px;
height: 30px;
outline: 0;
border: none;
font-size: 1.5em;
background-color: : #fff;
color: #2f4f4f ;
}
button{
font-size: 1.5em;
color: #53BDFF;
background-color: #ff768c
outline: 0;
border: 0px;
width: 50px;
}
.tasksBoard{
background-color: #fff;
margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
padding-right: 40px;
display: none;
}
ul{
list-style: none;
}
li{
border-bottom: 1px solid #53BDFF;
padding-bottom: 15px;
padding-top: 15px;
font-size: 1.3em;
color: #53BDFF;
}
a{
float: right;
text-align: right;
color: #fff;
font-size: 1.2em;
cursor: pointer;
}
.delete{
background-color: #ff6161;
padding: 0px 3px 0px 3px;
color: #fff;
cursor: pointer;
}
@media (max-width: 500px) {
.main{
margin: auto;
width: 100%;
}
input[type="text"]{
width: 80%;
}
button{
width: 0%;
}
}