Initial commit
This commit is contained in:
55
static/index.css
Normal file
55
static/index.css
Normal file
@@ -0,0 +1,55 @@
|
||||
body, html {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #404040;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
/*height: 80vh;*/
|
||||
}
|
||||
|
||||
.side {
|
||||
flex: 1;
|
||||
padding: 10px;
|
||||
border-right: 1px solid #ccc;
|
||||
}
|
||||
|
||||
.clan-selection {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.player-list {
|
||||
list-style: none;
|
||||
height: 60%;
|
||||
overflow-y: auto;
|
||||
border: 1px solid #ccc;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.list-controls {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.bottom-controls {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.settings-btn, .calculate-btn, .single-request-btn {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.form-control.overflow-auto {
|
||||
height: auto; /* Adjust as needed */
|
||||
max-height: 300px; /* Adjust as needed */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user