1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-07-23 09:16:48 +02:00

Finish script, finish view, make some progress on template

This commit is contained in:
quark
2025-02-16 18:10:53 +01:00
parent 19d1ecfc66
commit 5f1b698d58
20 changed files with 1211 additions and 68 deletions

View File

@ -0,0 +1,69 @@
:root {
--accent-primary: #FF0065;
--accent-secondary: #FFCB20;
}
body {
font-family: Arial, sans-serif;
background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
color: white;
text-align: center;
padding: 50px;
}
#name {
font-size: 2em;
font-weight: bold;
text-shadow: 2px 2px 15px var(--accent-secondary);
}
.wrap-container {
max-width: 500px;
margin: auto;
padding: 20px;
background: rgba(0, 0, 0, 0.8);
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.category {
display: flex;
justify-content: space-between;
padding: 10px;
background: rgba(255, 255, 255, 0.2);
border-radius: 5px;
margin: 10px 0;
padding: 10px;
}
h1 {
font-size: 2.5em;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 2px;
background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
-webkit-background-clip: text;
}
.list {
list-style: none;
padding: 0;
}
.list li {
display: flex;
justify-content: space-between;
background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
margin: 10px 0;
padding: 10px;
border-radius: 5px;
font-weight: bold;
}
.ranking-bar {
width: 100%;
height: 20px;
background: rgba(255, 255, 255, 0.2);
border-radius: 10px;
overflow: hidden;
margin-top: 10px;
position: relative;
}
.ranking-progress {
height: 100%;
width: 0%;
background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
border-radius: 10px;
}