-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
129 lines (110 loc) · 1.83 KB
/
index.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
129
.login{
width: 500px;
background: #222;
border-radius: 10px;
margin: 100px auto;
padding: 5px 0 20px 0;
box-shadow: 0 0 5px;
}
.login .form-content{
width: fit-content;
margin: 0 auto;
}
.login h2{
color: #ddd;
text-align: center;
}
.login span{
color: #fff;
margin-left: 5px;
}
.login input{
height: 30px;
width: 300px;
border-radius: 5px;
outline: none;
margin: 5px 0 15px 0;
}
.login label.name{
display: none;
}
.login .new-acout{
text-align: center;
display: block;
margin-top: 20px;
}
.login button{
width: 200px;
height: 30px;
text-align: center;
display:block;
margin: 0 auto;
border-radius: 10px;
outline: none;
font-weight: bold;
cursor: pointer;
}
.login .error{
color: red;
text-align: center;
display: block;
margin:0 0 10px 0;
padding: 0 20px;
}
.login .login-email{
text-align: center;
display: none;
margin-bottom: 10px;
color: #0f0;
}
.tarefas{
margin: 20px;
text-align: center;
display: none;
}
.tarefas input{
border-radius: 10px;
width: 80%;
height: 60px;
padding: 0 10px;
}
.tarefas input[type=text]{
height: 80px;
}
.tarefas button{
width: 80%;
height: 40px;
padding: 0 10px;
background: rgb(248, 9, 248);
color: white;
font-weight: bold;
}
.tarefas ul{
list-style: none;
}
.tarefas li{
color: #fff;
font-size: 18px;
width: 80%;
display: flex;
justify-content: space-between;
margin-top: 5px;
}
.tarefas li span{
color: red;
cursor: pointer;
}
.tarefas li span:hover{
color: #700;
}
span.msg{
position: absolute;
top: 30px;
left: 50%;
transform: translateX(-50%);
color: red;
background: #0008;
padding: 3px;
border-radius: 5px;
display: none;
}