-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (85 loc) · 1.65 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
95
96
97
98
li{
text-align: center;
list-style: none;
}
.green-background
{
background-color: rgb(138, 209, 31) ;
}
.main-background
{
background-color: rgb(236, 236, 236) ;
}
.box
{
background-color:rgb(60, 100, 0) !important;
}
.display-6{
font-size: 2rem !important;
}
.display-7{
font-size: 1.4rem !important;
font-weight: lighter;
}
.item {
min-height: 70px;
display: flex;
align-items: center;
border-bottom: 1px solid #f1f1f1;
background-color: white;
}
.item:last-child {
border-bottom: 0;
}
input:checked + p {
text-decoration: line-through;
text-decoration-color: rgb(60, 100, 0);
}
input[type="checkbox"] {
margin: 20px;
}
.carditem {
text-align: center;
background-color: white;
}
button {
min-height: 50px;
width: 50px;
border-radius:50%;
border-color: transparent;
background-color: rgb(60, 100, 0);
color: #fff;
font-size: 30px;
border-width: 0;
}
#clear {
background-color: rgb(100, 65, 0);
border-radius:0%;
font-size: 25px;
border-width: 0;
}
input[type="text"] {
text-align: center;
height: 60px;
top: 10px;
border: none;
background: transparent;
font-size: 20px;
font-weight: 200;
width: 313px;
}
.spacer{
height: 0.1vh;
}
@media only screen and (min-height: 900px) {
.display-6{
font-size: 3.5rem !important;
}
.display-7{
font-size: 2.8rem !important;
font-weight: lighter;
}
.spacer{
height: 1vh;
}
}