96 lines
1.3 KiB
CSS
96 lines
1.3 KiB
CSS
body {
|
|
font-family: "Segoe UI", sans-serif;
|
|
margin: 0;
|
|
background: #f4f6fb;
|
|
color: #1e293b;
|
|
}
|
|
|
|
/* TOP NAV */
|
|
.tabs {
|
|
display: flex;
|
|
justify-content: center;
|
|
background: #1d4ed8;
|
|
padding: 10px;
|
|
}
|
|
|
|
.tabs button {
|
|
background: transparent;
|
|
border: none;
|
|
color: white;
|
|
padding: 10px 15px;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.tabs button:hover {
|
|
background: rgba(255,255,255,0.15);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
/* SECTIONS */
|
|
.tab {
|
|
display: none;
|
|
padding: 20px;
|
|
}
|
|
|
|
/* CARDS */
|
|
.card {
|
|
background: white;
|
|
padding: 12px;
|
|
margin: 10px 0;
|
|
border-radius: 10px;
|
|
box-shadow: 0 3px 10px rgba(0,0,0,0.08);
|
|
}
|
|
|
|
/* PLAYER CARD */
|
|
.player-card {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.player-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.stats {
|
|
font-size: 12px;
|
|
color: gray;
|
|
}
|
|
|
|
/* DELETE BUTTON */
|
|
.delete-btn {
|
|
background: red;
|
|
border: none;
|
|
color: white;
|
|
padding: 6px 10px;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.delete-btn:hover {
|
|
background: darkred;
|
|
}
|
|
|
|
/* INPUTS */
|
|
input, select {
|
|
padding: 8px;
|
|
margin: 5px;
|
|
border-radius: 6px;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
/* BUTTONS */
|
|
button {
|
|
padding: 8px 12px;
|
|
border-radius: 6px;
|
|
border: none;
|
|
background: #2563eb;
|
|
color: white;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover {
|
|
background: #1d4ed8;
|
|
} |