-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
68 lines (62 loc) · 995 Bytes
/
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
* {
margin: 0;
padding: 0;
}
#app {
min-height: 100vh
}
.dark-mode{
background-color: black;
color: white;
border-color: white;
}
.light-mode {
background-color: white;
color: black;
border-color: black
}
.searchbar{
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
border-bottom: 2px solid;
}
.torrent{
border-bottom: 2px solid;
padding: 8px;
display: flex;
flex-direction: row;
gap: 15px;
}
.searchbar button{
margin: 0px 8px;
padding: 4px;
}
.input-text{
height: 24px;
width: 280px;
}
.input-checkbox {
height: 18px;
width: 26px;
}
.footer{
display: flex;
justify-content: center;
gap: 10px;
font-size: 24px;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: white;
}
.footer a {
text-decoration: none;
color: rgb(69, 64, 64);
}
.footer a:hover {
cursor: pointer;
color: rgb(12, 7, 161);
}