-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (90 loc) · 1.89 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
*{
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
}
header{
width: 100%;
height: 100px;
background: #2b3349;
padding: 20px;
box-sizing: border-box;
}
header>h1,h4{
color: rgba(255, 255, 255, .9);
font-weight: 300;
}
section{
width: 100%;
height: 100%;
background: rgba(30, 41, 65, 0.9);
position: fixed;
padding: 20px;
box-sizing: border-box;
}
article{
width: 100%;
position: relative;
float: left;
}
article>input{
width: calc(100% - 60px);
height: 40px;
border-radius: 25px;
border: none;
padding: 0px 15px;
box-sizing: border-box;
outline: none;
background: rgba(105, 110, 122, 0.4);
color: rgba(255, 255, 255, .8);
}
article>input::placeholder{
color: rgba(255, 255, 255, 0.959);
}
article>button{
width: 40px;
height: 40px;
border-radius: 50%;
color: white;
background: #2479A9;
border: none;
outline: none;
font-size: 22px;
font-weight: 500;
margin-left: 10px;
}
section>h3{
color: rgba(255, 255, 255, .9);
font-weight: 300;
}
label{
margin-left: 20px;
color: rgba(255, 255, 255, .9);
font-weight: 300;
}
.terminado{
color: red;
text-decoration:line-through;
font: bold 90% monospace;
}
.tarea{
margin-top: 20px;
border-radius: 50px;
background: rgba(105, 110, 122, 0.4);
width: 95%;
height: 60px;
display: flex;
flex-direction: row;
margin-bottom: 15px;
display: flex;
justify-content: start;
padding-left: 20px;
align-items: center;
}
input[type='checkbox'] {
appearance: none;
height: 20px;
width: 20px;
opacity: 35%;
border: white solid 1px;
}