-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·86 lines (73 loc) · 1.38 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
/*
# Nome: Mathias Fernandes
# n° 10734352
# email: [email protected]
# email usp: [email protected]
# atividade sobre vue
*/
div h1, div{
font-family: Arial, Helvetica, sans-serif;
display: table;
text-align: left;
padding: 0vh 2vw 0vh 0vw;
margin-left: 2rem;
}
.list-group {
padding: 0;
}
.list-group-item {
padding: 0;
}
form {
display: inline-block;
}
div.form-group input {
width: 10%;
margin: 0;
padding: 0vh 4vw 0vh 1vw;
}
div.form-group form input{
width: 40%;
margin: 0;
padding: 0vh 4vw 0vh 1vw;
}
input.error {
width: 50%;
margin: 0;
padding: 2vh 2vw 2vw 2vw;
background-color: rgb(240, 155, 155);
}
button {
background-color: royalblue;
border-radius: 10px;
padding: 1vh 2vw 1vh 2vw;
color: white;
text-align: center;
}
.task {
overflow: hidden;
overflow-y: scroll;
max-height: 150px;
margin: 0;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.list-group li {
width: 50vw;
float: left;
border: 0.3px solid rgb(214, 213, 213);
list-style: none;
text-align: left;
padding: 1vh 5vw 1vh 1vw;
}
.list-group li:hover {
background-color: rgb(214, 213, 213);;
border: 0.3px solid rgb(168, 168, 168);
}
.danger {
background-color: tomato;
float: right;
}