Use Bootstrap

This commit is contained in:
2024-07-02 03:10:47 +02:00
parent e2f7c13b79
commit 2119eead14
12 changed files with 288 additions and 360 deletions

6
static/css/bootstrap.min.css vendored Normal file
View File

File diff suppressed because one or more lines are too long

View File

File diff suppressed because one or more lines are too long

7
static/css/bootstrap.min.js vendored Normal file
View File

File diff suppressed because one or more lines are too long

View File

File diff suppressed because one or more lines are too long

61
static/css/style.css Normal file
View File

@@ -0,0 +1,61 @@
body {
background-color: #0c0c0c;
color: #ffffff;
}
a {
color: #ffffff;
}
a:hover {
color: #e91e63;
}
.nav-link {
color: #ffffff;
}
.nav-link:hover {
color: #e91e63;
}
.card {
background-color: #111111;
border: 1px solid #111111;
}
.card-title a {
color: #ffffff;
}
.card-title a:hover {
color: #e91e63;
}
.alert {
background-color: #333333;
border-color: #444444;
}
.list-group-item {
background-color: #141414;
border: 1px solid #141414;
}
.list-group-item a {
color: #ffffff;
}
.list-group-item a:hover {
color: #e91e63;
}
.btn-primary {
background-color: #06172e;
border-color: #000c1d;
}
.btn-primary:hover {
background-color: #040e1d;
border-color: #000c1d;
}