-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
85 lines (79 loc) · 1.25 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 {
font-size: 15px;
}
body {
background: -webkit-gradient(
linear,
left top,
right bottom,
from(#af5e94),
to(#5949f2)
)
fixed;
}
a {
color: black;
text-decoration: none;
}
a:hover {
text-decoration: none;
}
.card {
background-color: #fff;
}
.card-body,
ul {
background-color: rgb(246, 243, 255);
min-height: 0px;
}
.form-control {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.btn {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.list-item {
color: rgb(101, 101, 255);
}
.list-group-item {
background-color: inherit;
border: none;
}
.under-list-item {
font-size: 0.9rem;
}
.under-list-item .list-group-item {
color: rgb(78, 78, 78);
}
.under-list-input input {
height: calc(1em + 0.75rem);
}
.line-throught {
text-decoration: line-through;
}
footer {
position: fixed;
width: 100%;
bottom: 0;
}
@media (max-width: 992px) {
.container,
.row {
padding: 0;
margin: 0 auto;
}
.btn-outline-danger {
font-size: 0.9rem;
}
footer {
position: relative;
margin-top: 420px;
}
}
@media (max-width: 400px) {
#dellAll {
font-size: 0.7rem;
}
}