First Commit
108
static/themes/00s-copy/banner.css
Executable file
|
|
@ -0,0 +1,108 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
|
||||
|
||||
.banner {
|
||||
width: 100%;
|
||||
height: 150px;
|
||||
background: linear-gradient(to bottom, #003366 0%, #0066cc 100%);
|
||||
border: 2px solid #00ccff;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin: auto;
|
||||
box-shadow: 0 0 10px #00ccff;
|
||||
animation: fadeIn 2s ease-in-out;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
0% { opacity: 0; }
|
||||
100% { opacity: 1; }
|
||||
}
|
||||
|
||||
.galaxy-background {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background:
|
||||
linear-gradient(90deg,
|
||||
rgba(0, 204, 255, 0.1) 0%,
|
||||
rgba(255, 255, 255, 0.1) 100%
|
||||
),
|
||||
linear-gradient(0deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%),
|
||||
repeating-linear-gradient(
|
||||
0deg,
|
||||
transparent 0%,
|
||||
transparent 1px,
|
||||
rgba(255, 255, 255, 0.1) 2px,
|
||||
rgba(255, 255, 255, 0.1) 4px
|
||||
);
|
||||
z-index: 1;
|
||||
animation: moveBackground 10s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes moveBackground {
|
||||
0% { background-position: 0 0; }
|
||||
100% { background-position: 100% 0; }
|
||||
}
|
||||
|
||||
.banner-text {
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
font-size: 36px;
|
||||
color: #ffffff;
|
||||
text-shadow: 2px 2px 0px #00ccff, 4px 4px 0px #0066cc;
|
||||
z-index: 2;
|
||||
animation: textGlow 1.5s ease-in-out infinite alternate;
|
||||
}
|
||||
|
||||
@keyframes textGlow {
|
||||
0% { text-shadow: 2px 2px 0px #00ccff, 4px 4px 0px #0066cc; }
|
||||
100% { text-shadow: 2px 2px 10px #00ccff, 4px 4px 10px #0066cc; }
|
||||
}
|
||||
|
||||
.slogan {
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
font-size: 14px;
|
||||
color: #ffffff;
|
||||
text-shadow: 1px 1px 0px #00ccff;
|
||||
z-index: 2;
|
||||
margin-top: 10px;
|
||||
text-align: center;
|
||||
padding: 0 20px;
|
||||
animation: fadeIn 3s ease-in-out;
|
||||
}
|
||||
|
||||
/* Ajout des styles responsive */
|
||||
@media screen and (max-width: 768px) {
|
||||
.banner {
|
||||
height: 120px;
|
||||
}
|
||||
|
||||
.banner-text {
|
||||
font-size: 24px;
|
||||
text-align: center;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.slogan {
|
||||
font-size: 12px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 480px) {
|
||||
.banner {
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
.banner-text {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.slogan {
|
||||
font-size: 10px;
|
||||
}
|
||||
}
|
||||
95
static/themes/00s-copy/bbcode.css
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
|
||||
.bbcode-bar, .bbcode-bar ul {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.bbcode-bar {
|
||||
flex-direction: column;
|
||||
background-color: rgba(0,0,0, 0.);
|
||||
border-top: 2px inset #0066cc;
|
||||
border-right: 2px inset #0066cc;
|
||||
border-left: 2px inset #0066cc;
|
||||
margin: 0 -5px -5px 5px;
|
||||
width: 99%;
|
||||
}
|
||||
|
||||
.bbcode-bar ul {
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.bbcode-bar li {
|
||||
margin: 0 3px 3px 3px;
|
||||
font-family: 'Press Start 2P';
|
||||
}
|
||||
|
||||
.bbcode-bar button {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.draggable {
|
||||
width: 600px;
|
||||
height: 300px;
|
||||
overflow: auto;
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
background-color: rgba(0,0,0, 0.8);
|
||||
border: 2px solid #ccc;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
||||
z-index: 1000;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.draggable .header {
|
||||
position: fixed;
|
||||
width: 596px;
|
||||
background-color: #082039;
|
||||
color: #fff;
|
||||
padding: 5px;
|
||||
cursor: move;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.draggable .close-button {
|
||||
color: white;
|
||||
font-size: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.draggable .content {
|
||||
padding: 15px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
ul.bbcode-list {
|
||||
margin-left: 50px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
h1.h1-bbcode {
|
||||
font-family: "Roboto";
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
h2.h2-bbcode {
|
||||
font-family: "Roboto";
|
||||
font-size: 1.5rem;
|
||||
background-color: rgba(0, 0, 0, 0.0);
|
||||
border: none;
|
||||
}
|
||||
|
||||
h3.h3-bbcode {
|
||||
font-family: "Roboto";
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
fieldset.quote-bbcode {
|
||||
padding: 10px;
|
||||
border: 1px solid #fff;
|
||||
background-color: rgba(0,0,0, 0.4);
|
||||
}
|
||||
364
static/themes/00s-copy/colors.css
Executable file
|
|
@ -0,0 +1,364 @@
|
|||
html, body {
|
||||
background: #e0e0e0;
|
||||
background-size: 20px 20px;
|
||||
font-family: 'Verdana', sans-serif;
|
||||
}
|
||||
|
||||
.notification li.success {
|
||||
border-color: #d6e9c6;
|
||||
color: #468847;
|
||||
background-color: #dff0d8;
|
||||
box-shadow: none;
|
||||
padding: 10px;
|
||||
margin-bottom: 10px;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 4px;
|
||||
text-shadow: none;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.notification li.error {
|
||||
border: 1px solid orange;
|
||||
background-color: rgb(255, 215, 140);
|
||||
color: rgb(152, 120, 60);
|
||||
box-shadow: none;
|
||||
padding: 10px;
|
||||
margin-bottom: 10px;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 4px;
|
||||
text-shadow: none;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.container, .menu {
|
||||
background-color: #d0e7ff;
|
||||
border-color: #a3c2ff;
|
||||
}
|
||||
|
||||
.menu {
|
||||
background-repeat: no-repeat;
|
||||
background-size: 45%;
|
||||
background-color: #b3d1ff;
|
||||
}
|
||||
|
||||
.menu ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.menu h2 {
|
||||
background-color: #415c8a;
|
||||
color: #c4d8fd;
|
||||
text-shadow: 0 0 10px rgba(153, 204, 255, 0.5);
|
||||
}
|
||||
|
||||
.menu ul.guestbook {
|
||||
background-color: #fff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
.menu ul.guestbook li span.date {
|
||||
color: #64886a;
|
||||
}
|
||||
|
||||
.menu ul.guestbook li span.author {
|
||||
color: #816488;
|
||||
}
|
||||
|
||||
.new-item-menu::after {
|
||||
color: #ffffff;
|
||||
border-color: #ff0000;
|
||||
background-color: #ff4444;
|
||||
box-shadow: #ff0000 0 0 15px;
|
||||
}
|
||||
|
||||
.badge {
|
||||
background-color: #ff0000;
|
||||
border-color: #990000;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.container h2 {
|
||||
background: linear-gradient(90deg, #99ccff, #cce7ff);
|
||||
-webkit-background-clip: text;
|
||||
color: rgb(61, 61, 145);
|
||||
text-shadow: 0 0 10px rgba(153, 204, 255, 0.5);
|
||||
}
|
||||
|
||||
.guestbook p span.author {
|
||||
color: #64886a;
|
||||
}
|
||||
|
||||
.post-card, .news, .guestbook p {
|
||||
background-color: #f0f0f0;
|
||||
border-color: #d0d0d0;
|
||||
}
|
||||
|
||||
.post-card-header, .news-header {
|
||||
border-color: #d0d0d0;
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
|
||||
.post-card-header, .news-header h3 {
|
||||
text-shadow: #99ccff 0 0 10px;
|
||||
}
|
||||
|
||||
/* Contribution Page */
|
||||
|
||||
.games {
|
||||
background: url('/static/themes/default/img/gamepad2.png') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 30%;
|
||||
background-color: #fff;
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.games:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.movies {
|
||||
background: url('/static/themes/default/img/television.png') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20%;
|
||||
background-color: #fff;
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.movies:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.musics {
|
||||
background: url('/static/themes/default/img/music.png') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20%;
|
||||
background-color: #fff;
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.musics:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.tech {
|
||||
background: url('/static/themes/default/img/computer.png') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20%;
|
||||
background-color: #fff;
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.tech:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.category {
|
||||
background: url('') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20%;
|
||||
background-color: #fff;
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.category:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.news_contrib {
|
||||
background: url('/static/themes/default/img/news_contrib.png') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20%;
|
||||
background-color: #fff;
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.news_contrib:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
a {
|
||||
color: #693b05;
|
||||
text-decoration: underline;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #046539;
|
||||
text-shadow: 0 0 10px #cce7ff;
|
||||
}
|
||||
|
||||
a.danger {
|
||||
color: #ff6666;
|
||||
}
|
||||
|
||||
.text-admin {
|
||||
color: #ff3333;
|
||||
}
|
||||
|
||||
.text-sadmin {
|
||||
color: #ff0000;
|
||||
text-shadow: #cce7ff 0 0 15px;
|
||||
}
|
||||
|
||||
/* Forum */
|
||||
|
||||
.forum h3 {
|
||||
color: #99ccff;
|
||||
text-shadow: #99ccff 0 0 10px;
|
||||
}
|
||||
|
||||
.forum .category-name {
|
||||
background-color: #66a3ff;
|
||||
}
|
||||
|
||||
.forum .forum-row {
|
||||
background-color: #99ccff;
|
||||
}
|
||||
|
||||
.forum .forum-header {
|
||||
background-color: #cce7ff;
|
||||
}
|
||||
|
||||
.stats_forum ul {
|
||||
background-color: #f0f0f0;
|
||||
color: #333333;
|
||||
border-color: #d0d0d0;
|
||||
}
|
||||
|
||||
span.unread-badge {
|
||||
color: #00fc45;
|
||||
text-shadow: #00ff00 0 0 15px;
|
||||
}
|
||||
|
||||
/* FORMULAIRES */
|
||||
|
||||
button, .btn-default {
|
||||
background: linear-gradient(45deg, #235587, #cce7ff);
|
||||
border: 1px solid #ffffff;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
button:hover, .btn-default:hover {
|
||||
background: linear-gradient(45deg, #cce7ff, #235587);
|
||||
box-shadow: 0 0 15px #99ccff;
|
||||
}
|
||||
|
||||
.btn {
|
||||
border: 1px solid #ffffff;
|
||||
color: #ffffff;
|
||||
background-color: #0795d7;
|
||||
text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
.btn-add {
|
||||
background-color: #003311;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
.btn-add:hover {
|
||||
background-color: #00cf45;
|
||||
color: #ffffff;
|
||||
box-shadow: #00ff00 0 0 15px;
|
||||
}
|
||||
|
||||
.btn-danger {
|
||||
background-color: #330000;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
.btn-danger:hover {
|
||||
background-color: #ff0000;
|
||||
color: #ffffff;
|
||||
box-shadow: #ff0000 0 0 15px;
|
||||
}
|
||||
|
||||
.btn-warning {
|
||||
background-color: #333300;
|
||||
color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
.btn-warning:hover {
|
||||
background-color: #ffae00;
|
||||
color: #9b3201;
|
||||
box-shadow: #ffa600 0 0 15px;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"], input[type="email"], select, textarea {
|
||||
background-color: #f0f0f0;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
/* Pagination */
|
||||
.page-link {
|
||||
background-color: #f0f0f0;
|
||||
color: #333333;
|
||||
border-color: #d0d0d0;
|
||||
}
|
||||
|
||||
li.active span {
|
||||
box-shadow: #00ff00 0 0 15px;
|
||||
}
|
||||
|
||||
li.disabled span {
|
||||
background-color: #494949;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.footer p {
|
||||
color: #ffffff;
|
||||
text-shadow: #ff0000 0 0 10px;
|
||||
}
|
||||
|
||||
.deactivate {
|
||||
border: 1px solid !important;
|
||||
border-radius: 3px !important;
|
||||
padding: 2px !important;
|
||||
color: #a9a9a9 !important;
|
||||
opacity: 0.4 !important;
|
||||
}
|
||||
|
||||
a.new-item-menu {
|
||||
background-color: rgba(255, 0, 0, 0.2);
|
||||
height: 100%;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
a.new-item-menu:hover {
|
||||
background-color: rgba(255, 0, 0, 0.8);
|
||||
height: 100%;
|
||||
z-index: 1;
|
||||
}
|
||||
a.new-item-menu::after {
|
||||
content: "New";
|
||||
position: absolute;
|
||||
bottom: -10px;
|
||||
right: 30%;
|
||||
padding: 5px;
|
||||
background-color: #ff0000;
|
||||
color: #ffffff;
|
||||
border-radius: 3px;
|
||||
font-size: 0.6rem;
|
||||
z-index: 0;
|
||||
}
|
||||
43
static/themes/00s-copy/forms.css
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.btn, input[type="submit"], button {
|
||||
border: 1px solid;
|
||||
border-radius: 10px;
|
||||
padding: 5px 10px;
|
||||
margin: 5px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
max-width: max-content;
|
||||
font-size: 0.8rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.btn-small {
|
||||
font-size: 0.5rem;
|
||||
}
|
||||
|
||||
.btn-large {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"], input[type="email"], select, textarea {
|
||||
padding: 5px;
|
||||
margin: 5px;
|
||||
width: 99%;
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"], input[type="email"], select {
|
||||
height: 35px;
|
||||
}
|
||||
|
||||
.form-inline {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
13
static/themes/00s-copy/gallery.css
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
.gallery {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.gallery-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
max-width: 200px;
|
||||
}
|
||||
466
static/themes/00s-copy/games.css
Normal file
|
|
@ -0,0 +1,466 @@
|
|||
.card-game {
|
||||
border: 1px solid #cccccc;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
background: #f9f9f9;
|
||||
margin: 15px;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.card-game:hover {
|
||||
transform: scale(1.02);
|
||||
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.card-game .header {
|
||||
border-bottom: 1px solid #cccccc;
|
||||
padding: 10px;
|
||||
background: #e0e0e0;
|
||||
color: #333333;
|
||||
font-size: 1.1rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.card-game .header a {
|
||||
color: #0066cc;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.card-game .header a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.card-game .body {
|
||||
padding: 10px;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.card-game .footer {
|
||||
border-top: 1px solid #cccccc;
|
||||
background-color: #e0e0e0;
|
||||
padding: 10px;
|
||||
font-size: 0.8rem;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
ul.inline {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
ul.inline li {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin: 0 10px 0 0;
|
||||
}
|
||||
|
||||
.countdown {
|
||||
font-size: 20px;
|
||||
color: red;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* PETIT BAC */
|
||||
.game-bac-letter {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 60px;
|
||||
border: 2px solid #cccccc;
|
||||
background: #f0f0f0;
|
||||
color: #333333;
|
||||
font-family: 'Verdana', sans-serif;
|
||||
border-radius: 5px;
|
||||
margin: auto;
|
||||
padding: 10px;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
table.bac, table.bac th, table.bac tr, table.bac td {
|
||||
border: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
table.bac {
|
||||
width: 90%;
|
||||
margin: auto;
|
||||
border-collapse: collapse;
|
||||
background: #f9f9f9;
|
||||
}
|
||||
|
||||
table.bac th {
|
||||
background: #e0e0e0;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
table.bac th, table.bac td {
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
/* QUIZ */
|
||||
|
||||
table.quiz, table.quiz th, table.quiz tr, table.quiz td {
|
||||
border: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
table.quiz {
|
||||
width: 90%;
|
||||
margin: auto;
|
||||
border-collapse: collapse;
|
||||
background: #f9f9f9;
|
||||
}
|
||||
|
||||
table.quiz th {
|
||||
background: #e0e0e0;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
table.quiz th, table.quiz td {
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
/* QUIZ */
|
||||
.quizes {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 20px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.quiz-item {
|
||||
flex: 1 1 300px;
|
||||
border: 1px solid #cccccc;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
background: #f9f9f9;
|
||||
padding: 15px;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.quiz-item:hover {
|
||||
transform: scale(1.02);
|
||||
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.quiz-item h3 {
|
||||
border-bottom: 1px solid #cccccc;
|
||||
padding-bottom: 10px;
|
||||
margin-top: 0;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.quiz-item h3 a {
|
||||
color: #0066cc;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.quiz-item h3 a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.quiz-item p {
|
||||
color: #333333;
|
||||
margin: 8px 0;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.quiz-item p:last-child {
|
||||
font-weight: bold;
|
||||
color: #666666;
|
||||
}
|
||||
|
||||
/* Quiz Styles */
|
||||
.quiz-container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 20px;
|
||||
font-family: 'Verdana', sans-serif;
|
||||
}
|
||||
|
||||
.quiz-title {
|
||||
color: #333333;
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
font-size: 2rem;
|
||||
text-transform: uppercase;
|
||||
border-bottom: 2px solid #cccccc;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.quiz-form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.quiz-question {
|
||||
background: #f9f9f9;
|
||||
border: 1px solid #cccccc;
|
||||
margin-bottom: 20px;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.question-header {
|
||||
background: linear-gradient(to bottom, #e0e0e0, #cccccc);
|
||||
padding: 10px 15px;
|
||||
color: #333333;
|
||||
font-weight: bold;
|
||||
border-bottom: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.question-content {
|
||||
padding: 20px;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.question-content h3 {
|
||||
color: #0066cc;
|
||||
margin-bottom: 15px;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.choices-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.choice-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 8px;
|
||||
border: 1px solid #e0e0e0;
|
||||
border-radius: 3px;
|
||||
background: #f5f5f5;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.choice-item:hover {
|
||||
background: #e6e6e6;
|
||||
border-color: #cccccc;
|
||||
}
|
||||
|
||||
.choice-item input[type="radio"] {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.choice-item label {
|
||||
color: #333333;
|
||||
cursor: pointer;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.submit-container {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.submit-button {
|
||||
background: linear-gradient(to bottom, #4d90fe, #357ae8);
|
||||
color: white;
|
||||
border: 1px solid #2f5bb7;
|
||||
padding: 12px 30px;
|
||||
font-size: 1.1rem;
|
||||
cursor: pointer;
|
||||
border-radius: 3px;
|
||||
font-family: 'Arial', sans-serif;
|
||||
font-weight: bold;
|
||||
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.submit-button:hover {
|
||||
background: linear-gradient(to bottom, #357ae8, #2f5bb7);
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
/* Quiz Results Styles */
|
||||
.quiz-result-container {
|
||||
max-width: 800px;
|
||||
margin: 40px auto;
|
||||
padding: 20px;
|
||||
background: #ffffff;
|
||||
border: 1px solid #cccccc;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.quiz-result-card {
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.score-number {
|
||||
font-size: 36px;
|
||||
font-weight: bold;
|
||||
color: #0066cc;
|
||||
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.score-number.high { color: #008000; }
|
||||
.score-number.medium { color: #FFA500; }
|
||||
.score-number.low { color: #FF0000; }
|
||||
|
||||
.score-message {
|
||||
color: #333333;
|
||||
font-size: 18px;
|
||||
margin: 15px 0;
|
||||
font-family: 'Verdana', sans-serif;
|
||||
}
|
||||
|
||||
.quiz-score {
|
||||
float: right;
|
||||
background: #e0e0e0;
|
||||
color: #333333;
|
||||
font-size: 0.9rem;
|
||||
padding: 2px 8px;
|
||||
border-radius: 3px;
|
||||
border: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.progress-circle {
|
||||
position: relative;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
.circular-chart {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
transform: rotate(-90deg); /* Fait démarrer la progression à midi */
|
||||
}
|
||||
|
||||
.progress-path {
|
||||
stroke-linecap: round;
|
||||
transition: stroke-dasharray 0.5s ease;
|
||||
}
|
||||
|
||||
/* Couleurs pour les différents niveaux */
|
||||
.progress-path.high {
|
||||
stroke: #4caf50;
|
||||
}
|
||||
|
||||
.progress-path.medium {
|
||||
stroke: #ff9800;
|
||||
}
|
||||
|
||||
.progress-path.low {
|
||||
stroke: #f44336;
|
||||
}
|
||||
|
||||
.percentage-text {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
font-size: 2rem;
|
||||
font-weight: bold;
|
||||
color: #333333;
|
||||
font-family: 'Arial', sans-serif;
|
||||
}
|
||||
|
||||
.progress-circle-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
.progress-circle {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.progress-path {
|
||||
transition: stroke-dasharray 0.3s ease;
|
||||
}
|
||||
|
||||
.high {
|
||||
stroke: #4caf50; /* Green */
|
||||
}
|
||||
|
||||
.medium {
|
||||
stroke: #ffeb3b; /* Yellow */
|
||||
}
|
||||
|
||||
.low {
|
||||
stroke: #f44336; /* Red */
|
||||
}
|
||||
|
||||
/* Responsive table styles */
|
||||
.responsive-table {
|
||||
width: 100%;
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
.responsive-table input[type="text"] {
|
||||
width: 100%;
|
||||
padding: 8px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* Mobile first styles */
|
||||
@media screen and (max-width: 600px) {
|
||||
.responsive-table thead {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.responsive-table tr {
|
||||
margin-bottom: 20px;
|
||||
display: block;
|
||||
border: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.responsive-table td {
|
||||
display: block;
|
||||
text-align: left;
|
||||
border: none;
|
||||
border-bottom: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.responsive-table td:before {
|
||||
content: attr(data-label);
|
||||
font-weight: bold;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.game-bac-letter {
|
||||
position: static;
|
||||
text-align: center;
|
||||
margin: 1em auto;
|
||||
width: fit-content;
|
||||
}
|
||||
}
|
||||
|
||||
/* Desktop styles */
|
||||
@media screen and (min-width: 601px) {
|
||||
.responsive-table {
|
||||
display: table;
|
||||
}
|
||||
|
||||
.responsive-table thead {
|
||||
display: table-header-group;
|
||||
}
|
||||
|
||||
.responsive-table tbody {
|
||||
display: table-row-group;
|
||||
}
|
||||
|
||||
.responsive-table tr {
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
.responsive-table td,
|
||||
.responsive-table th {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
.responsive-table td:before {
|
||||
content: none;
|
||||
}
|
||||
|
||||
.responsive-table input[type="text"] {
|
||||
width: 90%;
|
||||
}
|
||||
}
|
||||
59
static/themes/00s-copy/grid.css
Executable file
|
|
@ -0,0 +1,59 @@
|
|||
/* Système de grille utilisant les flexbox */
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.row-xs {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
width: 80%;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.col {
|
||||
flex: 1;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
/* classes pour les largeurs des colonnes */
|
||||
|
||||
.col-1 { flex: 0 0 8.33%; }
|
||||
.col-2 { flex: 0 0 16.667%; }
|
||||
.col-3 { flex: 0 0 25%; }
|
||||
.col-4 { flex: 0 0 33.33%; }
|
||||
.col-5 { flex: 0 0 46.66%; }
|
||||
.col-6 { flex: 0 0 50%; }
|
||||
.col-7 { flex: 0 0 58.33%; }
|
||||
.col-8 { flex: 0 0 66.66%; }
|
||||
.col-9 { flex: 0 0 75%; }
|
||||
.col-10 { flex: 0 0 83.33%; }
|
||||
.col-11 { flex: 0 0 91.66%; }
|
||||
.col-12 { flex: 0 0 100%; }
|
||||
|
||||
/* Responsive */
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
.row {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.col {
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.menu ul.guestbook li span.date {
|
||||
color: #646788;
|
||||
}
|
||||
|
||||
.col-2 {
|
||||
order: 2; /* Placer après .col-7 */
|
||||
}
|
||||
|
||||
.col-7 {
|
||||
order: 1; /* Placer avant .col-1 */
|
||||
}
|
||||
}
|
||||
BIN
static/themes/00s-copy/img/archer_sprite.png
Executable file
|
After Width: | Height: | Size: 75 KiB |
BIN
static/themes/00s-copy/img/bg.png
Executable file
|
After Width: | Height: | Size: 123 B |
BIN
static/themes/00s-copy/img/bg2.png
Executable file
|
After Width: | Height: | Size: 154 B |
BIN
static/themes/00s-copy/img/bg3.png
Executable file
|
After Width: | Height: | Size: 161 B |
BIN
static/themes/00s-copy/img/bg_container.png
Executable file
|
After Width: | Height: | Size: 101 B |
BIN
static/themes/00s-copy/img/bg_galactique.png
Executable file
|
After Width: | Height: | Size: 34 KiB |
BIN
static/themes/00s-copy/img/bg_galactique2.png
Executable file
|
After Width: | Height: | Size: 436 KiB |
BIN
static/themes/00s-copy/img/computer.png
Executable file
|
After Width: | Height: | Size: 53 KiB |
BIN
static/themes/00s-copy/img/gamepad.png
Executable file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
static/themes/00s-copy/img/gamepad2.png
Executable file
|
After Width: | Height: | Size: 131 KiB |
BIN
static/themes/00s-copy/img/mage_sprite.png
Executable file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
static/themes/00s-copy/img/music.png
Executable file
|
After Width: | Height: | Size: 18 KiB |
BIN
static/themes/00s-copy/img/news_contrib.png
Executable file
|
After Width: | Height: | Size: 197 KiB |
BIN
static/themes/00s-copy/img/television.png
Executable file
|
After Width: | Height: | Size: 282 KiB |
34
static/themes/00s-copy/pm.css
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
.table {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 90%;
|
||||
margin: 0 auto 10px auto;
|
||||
}
|
||||
|
||||
.table .header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex: 1;
|
||||
border-bottom: 2px solid grey;
|
||||
font-weight: 800;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.table .body {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex: 1;
|
||||
border-bottom: 1px solid grey;
|
||||
}
|
||||
|
||||
.new-message {
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
background-color: rgb(236, 58, 58);
|
||||
border: 1px solid red;
|
||||
font-size: 0.5rem;
|
||||
margin-right: 10px;
|
||||
padding: 3px;
|
||||
border-radius: 10px;
|
||||
text-shadow: none;
|
||||
}
|
||||
41
static/themes/00s-copy/post.css
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
.postmenu {
|
||||
border: 1px solid #cccccc;
|
||||
background-color: rgba(255, 255, 255, 0.9);
|
||||
width: 300px;
|
||||
margin: 10px;
|
||||
float: right;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.postmenu .header {
|
||||
background-color: rgb(200, 220, 255);
|
||||
padding: 5px;
|
||||
font-size: 1.2rem;
|
||||
border-bottom: 1px solid #cccccc;
|
||||
color: #333333;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.postmenu .body {
|
||||
padding: 10px;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.postmenu .body ul {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.postmenu .body ul li {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
list-style-type: none;
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
.postmenu .body ul li:hover {
|
||||
margin-left: 10px;
|
||||
color: #0066cc;
|
||||
}
|
||||
291
static/themes/00s-copy/profile.css
Normal file
|
|
@ -0,0 +1,291 @@
|
|||
.profile-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.profile-avatar {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
border-radius: 50%;
|
||||
object-fit: cover;
|
||||
border: 3px solid #6699cc;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.profile-avatar:hover {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.profile-info {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.profile-name {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
color: #003366;
|
||||
}
|
||||
|
||||
.profile-username {
|
||||
color: #336699;
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.profile-stats {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
||||
gap: 1rem;
|
||||
margin: 2rem 0;
|
||||
padding: 1rem;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
text-align: center;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
color: #003366;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
color: #336699;
|
||||
font-size: 0.9rem;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.profile-bio {
|
||||
line-height: 1.6;
|
||||
color: #333333;
|
||||
margin: 2rem 0;
|
||||
padding: 1rem;
|
||||
border-left: 4px solid #6699cc;
|
||||
}
|
||||
|
||||
.profile-contact {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.contact-button {
|
||||
padding: 0.8rem 1.5rem;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
background: #6699cc;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
transition: background 0.3s ease;
|
||||
}
|
||||
|
||||
.contact-button:hover {
|
||||
background: #003366;
|
||||
}
|
||||
|
||||
.profile-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 1fr;
|
||||
gap: 2rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.profile-main {
|
||||
background: #f0f0f04d;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.profile-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.avatar-container {
|
||||
position: relative;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
.level-badge {
|
||||
position: absolute;
|
||||
background: #078356;
|
||||
color: white;
|
||||
padding: 0.5rem;
|
||||
border-radius: 50%;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 0.8rem;
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.level-number {
|
||||
font-size: 1rem;
|
||||
font-weight: bold;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.profile-info {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.username {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
color: #003366;
|
||||
}
|
||||
|
||||
.joined-date {
|
||||
color: #336699;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.profile-bio {
|
||||
margin-top: 2rem;
|
||||
padding-top: 2rem;
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
|
||||
.bio-content {
|
||||
line-height: 1.6;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
/* Colonne de droite */
|
||||
.profile-stats {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.stats-card, .achievements-card {
|
||||
background: #f0f0f04d;
|
||||
border-radius: 8px;
|
||||
padding: 1.5rem;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.stats-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 1rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
text-align: center;
|
||||
padding: 1rem;
|
||||
background: #ffffff78;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
color: #444;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: 0.9rem;
|
||||
color: #666;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.achievements-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.badge-item {
|
||||
text-align: center;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
.badge-item img {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.badge-name {
|
||||
font-size: 0.8rem;
|
||||
color: #336699;
|
||||
}
|
||||
|
||||
.profile-actions {
|
||||
margin-top: 2rem;
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: #6699cc;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background: #99ccff;
|
||||
color: #003366;
|
||||
}
|
||||
|
||||
.inventory {
|
||||
background: #f0f0f04d;
|
||||
border-radius: 8px;
|
||||
padding: 1.5rem;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||
width: 98%;
|
||||
margin: 10px auto;
|
||||
}
|
||||
|
||||
.inventory-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
||||
gap: 15px;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.inventory-item {
|
||||
text-align: center;
|
||||
margin: 15px;
|
||||
padding: 15px;
|
||||
background: #ffffff78;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.inventory-item a {
|
||||
text-decoration: none;
|
||||
color: #003366;
|
||||
}
|
||||
|
||||
.item-quantity {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
color: #003366;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 768px) {
|
||||
.profile-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.stats-grid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
101
static/themes/00s-copy/shop.css
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
.shop {
|
||||
padding: 10px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
flex-direction: row;
|
||||
}
|
||||
.card-shop {
|
||||
background: #fff;
|
||||
border: 2px solid #000;
|
||||
border-radius: 8px;
|
||||
margin: 15px 0;
|
||||
padding: 15px;
|
||||
box-shadow: 3px 3px 0px #000;
|
||||
transition: transform 0.2s;
|
||||
width: 250px;
|
||||
min-height: 380px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
margin-right: 15px;
|
||||
vertical-align: top;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.card-shop:hover {
|
||||
transform: translateY(-5px);
|
||||
background: #f0f7ff;
|
||||
}
|
||||
|
||||
.card-shop img {
|
||||
max-width: 220px;
|
||||
margin-bottom: 10px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.card-shop .card-title {
|
||||
font-family: "Comic Sans MS", cursive;
|
||||
color: #0066cc;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.card-shop .card-text {
|
||||
font-family: Arial, sans-serif;
|
||||
color: #333;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.card-shop .card-content {
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.card-shop .button-container {
|
||||
margin-top: auto;
|
||||
text-align: center;
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
||||
a.btn-shop {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.btn-shop-primary {
|
||||
background: linear-gradient(to bottom, #0099ff, #0066cc);
|
||||
border: 2px solid #000;
|
||||
border-radius: 5px;
|
||||
padding: 5px 15px;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.btn-shop-primary:hover {
|
||||
background: linear-gradient(to bottom, #00bbff, #0099ff);
|
||||
}
|
||||
|
||||
.btn-shop-secondary {
|
||||
background: linear-gradient(to bottom, #ffcc00, #ff9900);
|
||||
border: 2px solid #000;
|
||||
border-radius: 5px;
|
||||
padding: 5px 15px;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.btn-shop-large {
|
||||
padding: 10px 20px;
|
||||
height: 65px;
|
||||
}
|
||||
|
||||
.fa-coins {
|
||||
color: #ffd700;
|
||||
}
|
||||
486
static/themes/00s-copy/structure.css
Executable file
|
|
@ -0,0 +1,486 @@
|
|||
/* Marges, paddings, dimensions, flexbox */
|
||||
*, html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
/* margin: 20px 0 20px 0; */
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
p, ul {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
p.date {
|
||||
font-size: 0.8em;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.notification {
|
||||
border-radius: 5px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.notification ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.notification ul li {
|
||||
padding: 10px;
|
||||
border: 2px solid;
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.container, .menu {
|
||||
padding: 0;
|
||||
border: 2px solid;
|
||||
margin-bottom: 10px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.menu {
|
||||
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.container {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.menu h2 {
|
||||
border-bottom: 2px solid;
|
||||
padding: 10px;
|
||||
margin: 0 0 20px;
|
||||
width: 100%;
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.container h2 {
|
||||
border-bottom: 2px solid;
|
||||
padding: 10px;
|
||||
margin: 0 0 20px;
|
||||
width: 100%;
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
/* Menu horizontal */
|
||||
.menu-horizontal {
|
||||
background: linear-gradient(to bottom, #4c4c4c 0%, #2c2c2c 100%);
|
||||
border: 1px solid #666;
|
||||
box-shadow: 0 0 5px rgba(0,0,0,0.5);
|
||||
position: relative;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.menu-horizontal ul {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.menu-horizontal ul li {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.menu-horizontal ul li a {
|
||||
display: block;
|
||||
padding: 10px 20px;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
text-shadow: 1px 1px 1px #000;
|
||||
}
|
||||
|
||||
.menu-horizontal ul li a:hover {
|
||||
background: linear-gradient(to bottom, #666 0%, #333 100%);
|
||||
}
|
||||
|
||||
.menu-horizontal .dropdown {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background: #333;
|
||||
min-width: 200px;
|
||||
box-shadow: 0 2px 5px rgba(0,0,0,0.5);
|
||||
z-index: 1000;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.menu-horizontal li:hover .dropdown {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.menu-horizontal .dropdown li {
|
||||
width: 100%;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.menu-horizontal .dropdown a {
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.badge {
|
||||
border: 1px solid;
|
||||
border-radius: 3px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
/* Style du menu burger */
|
||||
.burger-menu {
|
||||
display: none;
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
background: linear-gradient(to bottom, #4c4c4c 0%, #2c2c2c 100%);
|
||||
border: 1px solid #666;
|
||||
box-shadow: 0 0 5px rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
.burger-icon {
|
||||
background: none;
|
||||
border: none;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.burger-icon span {
|
||||
display: block;
|
||||
width: 30px;
|
||||
height: 3px;
|
||||
background-color: white;
|
||||
border-radius: 3px;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
body {
|
||||
margin-top: 80px;
|
||||
}
|
||||
|
||||
.burger-menu {
|
||||
display: block;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 1000;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.menu-horizontal {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 50px; /* Hauteur du burger menu */
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
background: #000;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.menu-horizontal.active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.menu-horizontal ul {
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.menu-horizontal ul li {
|
||||
width: 100%;
|
||||
border-bottom: 1px solid #333;
|
||||
}
|
||||
|
||||
.menu-horizontal ul li a {
|
||||
padding: 15px;
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Style des sous-menus sur mobile */
|
||||
.menu-horizontal ul ul {
|
||||
position: static;
|
||||
display: none;
|
||||
width: 100%;
|
||||
background: #222;
|
||||
}
|
||||
|
||||
.menu-horizontal li.active > ul {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.menu-horizontal .dropdown {
|
||||
position: static;
|
||||
width: 100%;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.menu-horizontal .dropdown li {
|
||||
padding-left: 20px; /* Indentation pour les sous-menus */
|
||||
}
|
||||
|
||||
.menu-horizontal li:hover .dropdown {
|
||||
display: none; /* Désactive l'affichage au hover sur mobile */
|
||||
}
|
||||
|
||||
.menu-horizontal li.active .dropdown {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Animation du burger quand actif */
|
||||
.burger-menu.active .burger-icon span:first-child {
|
||||
transform: rotate(45deg) translate(8px, 6px);
|
||||
}
|
||||
|
||||
.burger-menu.active .burger-icon span:nth-child(2) {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.burger-menu.active .burger-icon span:last-child {
|
||||
transform: rotate(-45deg) translate(8px, -6px);
|
||||
}
|
||||
|
||||
/* Styles des sous-menus sur mobile */
|
||||
.menu-horizontal .dropdown {
|
||||
position: static;
|
||||
width: 100%;
|
||||
box-shadow: none;
|
||||
background: #222;
|
||||
}
|
||||
|
||||
.menu-horizontal li:hover .dropdown {
|
||||
display: none; /* Désactive l'affichage au hover sur mobile */
|
||||
}
|
||||
|
||||
.menu-horizontal li.active .dropdown {
|
||||
display: block; /* Affiche uniquement quand .active est présent */
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 769px) {
|
||||
.burger-menu {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.menu-horizontal {
|
||||
display: block !important;
|
||||
}
|
||||
}
|
||||
|
||||
.post-card {
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
.news-header, .post-card-header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
.contrib {
|
||||
border: 1px solid;
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.contrib a {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
|
||||
span.post-offline {
|
||||
color:red;
|
||||
font-weight:bold;
|
||||
margin:5px;
|
||||
background-image: url('../../img/icons/shield-red-cross.png');
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
span.post-online {
|
||||
color:green;
|
||||
font-weight:bold;
|
||||
margin:5px;
|
||||
background-image: url('../../img/icons/shield-green-v.png');
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
/* forum */
|
||||
.forum {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 0 0 10px 0;
|
||||
}
|
||||
|
||||
.forum .row {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.forum h3 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.forum-header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
border: 1px 1px 0 1px solid;
|
||||
margin: 10px 10px -10px 10px;
|
||||
}
|
||||
|
||||
.forum-column, .forum-column-detail {
|
||||
flex: 1;
|
||||
flex-direction: column;
|
||||
border: 1px solid;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.forum-column:nth-child(1) {
|
||||
flex: 2;
|
||||
}
|
||||
|
||||
.forum-column:nth-child(2), .forum-column:nth-child(3) {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.forum-column-detail:nth-child(1) {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.forum-column-detail:nth-child(2) {
|
||||
flex: 4;
|
||||
}
|
||||
|
||||
.forum-column-detail ul {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.forum-body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border: 0 1px 1px 1px solid;
|
||||
margin: 10px 10px -10px 10px;
|
||||
}
|
||||
|
||||
.forum-body img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.forum-row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
border: 0 1px 0 1px solid;
|
||||
}
|
||||
|
||||
.stats_forum {
|
||||
margin: 20px 0 10px 0;
|
||||
border-top: 2px solid
|
||||
}
|
||||
|
||||
.stats_forum ul {
|
||||
list-style-type: none;
|
||||
border: 1px solid;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.stats_forum ul li {
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
ul.breadcrumbs {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
font-size: 1rem;
|
||||
list-style-type: none;
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
ul.breadcrumbs li {
|
||||
margin: 0 5px 0 5px;
|
||||
}
|
||||
|
||||
ul.breadcrumbs li a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Pagination */
|
||||
ul.pagination {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
list-style-type: none;
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
ul.pagination li.page-item {
|
||||
margin: 0 5px 0 5px;
|
||||
}
|
||||
|
||||
ul.pagination li.page-item a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.page-link {
|
||||
padding: 5px 10px;
|
||||
border: 2px solid;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
max-width: max-content;
|
||||
font-size: 0.8rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
li.disabled {
|
||||
pointer-events: none;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: separate;
|
||||
border-spacing: 2px;
|
||||
border: 2px outset #0066cc;
|
||||
}
|
||||
|
||||
td, th {
|
||||
border: 1px inset #0066cc;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
input, select, textarea {
|
||||
border: 2px inset #0066cc;
|
||||
background: #ffffff;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
/* Ajout d'un compteur de visiteurs style années 2000 */
|
||||
.visitor-counter {
|
||||
font-family: "Digital-7", monospace;
|
||||
background: #000000;
|
||||
color: #00ff00;
|
||||
padding: 5px;
|
||||
border: 1px solid #00ff00;
|
||||
text-align: center;
|
||||
margin: 10px 0;
|
||||
}
|
||||
53
static/themes/00s-copy/typo.css
Executable file
|
|
@ -0,0 +1,53 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=Tahoma:wght@400;700&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Verdana:wght@400;700&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Trebuchet+MS:wght@400;700&display=swap');
|
||||
|
||||
body {
|
||||
font-family: 'Verdana', sans-serif;
|
||||
font-size: 14px;
|
||||
color: #333333;
|
||||
text-shadow: 1px 1px 0px #99ccff;
|
||||
}
|
||||
|
||||
h1, h2, h3, .breadcrumbs, .btn, input, select, textarea, button, .notification, .page-link, .guestbook p {
|
||||
font-family: 'Trebuchet MS', sans-serif;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
font-family: 'Tahoma', sans-serif;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
line-height: 1.5;
|
||||
color: #333333;
|
||||
text-shadow: 1px 1px 0px #99ccff;
|
||||
}
|
||||
|
||||
.btn, button {
|
||||
font-family: 'Trebuchet MS', sans-serif;
|
||||
text-transform: uppercase;
|
||||
font-size: 14px;
|
||||
color: #ffffff;
|
||||
text-shadow: 1px 1px 0px #99ccff;
|
||||
}
|
||||
|
||||
.menu h2 {
|
||||
font-family: 'Verdana', sans-serif;
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.container {
|
||||
font-family: 'Verdana', sans-serif;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.blink {
|
||||
animation: blink 1s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
0% { opacity: 1; }
|
||||
50% { opacity: 0; }
|
||||
100% { opacity: 1; }
|
||||
}
|
||||
0
static/themes/00s/animations.css
Normal file
108
static/themes/00s/banner.css
Executable file
|
|
@ -0,0 +1,108 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
|
||||
|
||||
.banner {
|
||||
width: 100%;
|
||||
height: 150px;
|
||||
background: linear-gradient(to bottom, #003366 0%, #0066cc 100%);
|
||||
border: 2px solid #00ccff;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin: auto;
|
||||
box-shadow: 0 0 10px #00ccff;
|
||||
animation: fadeIn 2s ease-in-out;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
0% { opacity: 0; }
|
||||
100% { opacity: 1; }
|
||||
}
|
||||
|
||||
.galaxy-background {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background:
|
||||
linear-gradient(90deg,
|
||||
rgba(0, 204, 255, 0.1) 0%,
|
||||
rgba(255, 255, 255, 0.1) 100%
|
||||
),
|
||||
linear-gradient(0deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%),
|
||||
repeating-linear-gradient(
|
||||
0deg,
|
||||
transparent 0%,
|
||||
transparent 1px,
|
||||
rgba(255, 255, 255, 0.1) 2px,
|
||||
rgba(255, 255, 255, 0.1) 4px
|
||||
);
|
||||
z-index: 1;
|
||||
animation: moveBackground 10s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes moveBackground {
|
||||
0% { background-position: 0 0; }
|
||||
100% { background-position: 100% 0; }
|
||||
}
|
||||
|
||||
.banner-text {
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
font-size: 36px;
|
||||
color: #ffffff;
|
||||
text-shadow: 2px 2px 0px #00ccff, 4px 4px 0px #0066cc;
|
||||
z-index: 2;
|
||||
animation: textGlow 1.5s ease-in-out infinite alternate;
|
||||
}
|
||||
|
||||
@keyframes textGlow {
|
||||
0% { text-shadow: 2px 2px 0px #00ccff, 4px 4px 0px #0066cc; }
|
||||
100% { text-shadow: 2px 2px 10px #00ccff, 4px 4px 10px #0066cc; }
|
||||
}
|
||||
|
||||
.slogan {
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
font-size: 14px;
|
||||
color: #ffffff;
|
||||
text-shadow: 1px 1px 0px #00ccff;
|
||||
z-index: 2;
|
||||
margin-top: 10px;
|
||||
text-align: center;
|
||||
padding: 0 20px;
|
||||
animation: fadeIn 3s ease-in-out;
|
||||
}
|
||||
|
||||
/* Ajout des styles responsive */
|
||||
@media screen and (max-width: 768px) {
|
||||
.banner {
|
||||
height: 120px;
|
||||
}
|
||||
|
||||
.banner-text {
|
||||
font-size: 24px;
|
||||
text-align: center;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.slogan {
|
||||
font-size: 12px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 480px) {
|
||||
.banner {
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
.banner-text {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.slogan {
|
||||
font-size: 10px;
|
||||
}
|
||||
}
|
||||
78
static/themes/00s/bbcode.css
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
|
||||
.bbcode-bar, .bbcode-bar ul {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.bbcode-bar {
|
||||
flex-direction: column;
|
||||
margin: 0 -5px -5px 5px;
|
||||
width: 99%;
|
||||
}
|
||||
|
||||
.bbcode-bar ul {
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.bbcode-bar li {
|
||||
margin: 0 3px 3px 3px;
|
||||
}
|
||||
|
||||
.bbcode-bar button {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.draggable {
|
||||
width: 600px;
|
||||
height: 300px;
|
||||
overflow: auto;
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
z-index: 1000;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.draggable .header {
|
||||
position: fixed;
|
||||
width: 596px;
|
||||
padding: 5px;
|
||||
cursor: move;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.draggable .close-button {
|
||||
font-size: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.draggable .content {
|
||||
padding: 15px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
ul.bbcode-list {
|
||||
margin-left: 50px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
h1.h1-bbcode {
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
h2.h2-bbcode {
|
||||
font-size: 1.5rem;
|
||||
border: none;
|
||||
}
|
||||
|
||||
h3.h3-bbcode {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
fieldset.quote-bbcode {
|
||||
padding: 10px;
|
||||
}
|
||||
0
static/themes/00s/decorations.css
Normal file
39
static/themes/00s/forms.css
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.btn, input[type="submit"], button {
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
max-width: max-content;
|
||||
font-size: 0.8rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.btn-small {
|
||||
font-size: 0.5rem;
|
||||
}
|
||||
|
||||
.btn-large {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"], input[type="email"], select, textarea {
|
||||
padding: 5px;
|
||||
margin: 5px;
|
||||
width: 99%;
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"], input[type="email"], select {
|
||||
height: 35px;
|
||||
}
|
||||
|
||||
.form-inline {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
13
static/themes/00s/gallery.css
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
.gallery {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.gallery-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
max-width: 200px;
|
||||
}
|
||||
310
static/themes/00s/games.css
Normal file
|
|
@ -0,0 +1,310 @@
|
|||
.card-game {
|
||||
margin: 15px;
|
||||
}
|
||||
|
||||
.card-game .header {
|
||||
padding: 10px;
|
||||
font-size: 1.1rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.card-game .body {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.card-game .footer {
|
||||
padding: 10px;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
ul.inline {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
ul.inline li {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin: 0 10px 0 0;
|
||||
}
|
||||
|
||||
.countdown {
|
||||
font-size: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* PETIT BAC */
|
||||
.game-bac-letter {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 60px;
|
||||
margin: auto;
|
||||
padding: 10px;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
table.bac {
|
||||
width: 90%;
|
||||
margin: auto;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table.bac th, table.bac td {
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
/* QUIZ */
|
||||
|
||||
table.quiz {
|
||||
width: 90%;
|
||||
margin: auto;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table.quiz th, table.quiz td {
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
/* QUIZ */
|
||||
.quizes {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 20px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.quiz-item {
|
||||
flex: 1 1 300px;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.quiz-item h3 {
|
||||
padding-bottom: 10px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.quiz-item p {
|
||||
margin: 8px 0;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
/* Quiz Styles */
|
||||
.quiz-container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.quiz-title {
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
font-size: 2rem;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.quiz-form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.quiz-question {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.question-header {
|
||||
padding: 10px 15px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.question-content {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.question-content h3 {
|
||||
margin-bottom: 15px;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.choices-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.choice-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 8px 8px 8px 25px;
|
||||
}
|
||||
|
||||
.choice-item input[type="radio"] {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.choice-item label {
|
||||
cursor: pointer;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.submit-container {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.submit-button {
|
||||
margin: 10px auto;
|
||||
padding: 12px 30px;
|
||||
font-size: 1.1rem;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Quiz Results Styles */
|
||||
.quiz-result-container {
|
||||
max-width: 800px;
|
||||
margin: 40px auto;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.quiz-result-card {
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.score-number {
|
||||
font-size: 36px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.score-message {
|
||||
font-size: 18px;
|
||||
margin: 15px 0;
|
||||
}
|
||||
|
||||
.quiz-score {
|
||||
float: right;
|
||||
font-size: 0.9rem;
|
||||
padding: 2px 8px;
|
||||
}
|
||||
|
||||
.progress-circle {
|
||||
position: relative;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
.circular-chart {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
transform: rotate(-90deg); /* Fait démarrer la progression à midi */
|
||||
}
|
||||
|
||||
.progress-path {
|
||||
stroke-linecap: round;
|
||||
transition: stroke-dasharray 0.5s ease;
|
||||
}
|
||||
|
||||
|
||||
.percentage-text {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
font-size: 2rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.progress-circle-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
.progress-circle {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Responsive table styles */
|
||||
.responsive-table {
|
||||
width: 100%;
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
.responsive-table input[type="text"] {
|
||||
width: 100%;
|
||||
padding: 8px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* Mobile first styles */
|
||||
@media screen and (max-width: 600px) {
|
||||
.responsive-table thead {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.responsive-table tr {
|
||||
margin-bottom: 20px;
|
||||
display: block;
|
||||
border: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.responsive-table td {
|
||||
display: block;
|
||||
text-align: left;
|
||||
border: none;
|
||||
border-bottom: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.responsive-table td:before {
|
||||
content: attr(data-label);
|
||||
font-weight: bold;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.game-bac-letter {
|
||||
position: static;
|
||||
text-align: center;
|
||||
margin: 1em auto;
|
||||
width: fit-content;
|
||||
}
|
||||
}
|
||||
|
||||
/* Desktop styles */
|
||||
@media screen and (min-width: 601px) {
|
||||
.responsive-table {
|
||||
display: table;
|
||||
}
|
||||
|
||||
.responsive-table thead {
|
||||
display: table-header-group;
|
||||
}
|
||||
|
||||
.responsive-table tbody {
|
||||
display: table-row-group;
|
||||
}
|
||||
|
||||
.responsive-table tr {
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
.responsive-table td,
|
||||
.responsive-table th {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
.responsive-table td:before {
|
||||
content: none;
|
||||
}
|
||||
|
||||
.responsive-table input[type="text"] {
|
||||
width: 90%;
|
||||
}
|
||||
}
|
||||
59
static/themes/00s/grid.css
Executable file
|
|
@ -0,0 +1,59 @@
|
|||
/* Système de grille utilisant les flexbox */
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.row-xs {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
width: 80%;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.col {
|
||||
flex: 1;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
/* classes pour les largeurs des colonnes */
|
||||
|
||||
.col-1 { flex: 0 0 8.33%; }
|
||||
.col-2 { flex: 0 0 16.667%; }
|
||||
.col-3 { flex: 0 0 25%; }
|
||||
.col-4 { flex: 0 0 33.33%; }
|
||||
.col-5 { flex: 0 0 46.66%; }
|
||||
.col-6 { flex: 0 0 50%; }
|
||||
.col-7 { flex: 0 0 58.33%; }
|
||||
.col-8 { flex: 0 0 66.66%; }
|
||||
.col-9 { flex: 0 0 75%; }
|
||||
.col-10 { flex: 0 0 83.33%; }
|
||||
.col-11 { flex: 0 0 91.66%; }
|
||||
.col-12 { flex: 0 0 100%; }
|
||||
|
||||
/* Responsive */
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
.row {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.col {
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.menu ul.guestbook li span.date {
|
||||
color: #646788;
|
||||
}
|
||||
|
||||
.col-2 {
|
||||
order: 2; /* Placer après .col-7 */
|
||||
}
|
||||
|
||||
.col-7 {
|
||||
order: 1; /* Placer avant .col-1 */
|
||||
}
|
||||
}
|
||||
27
static/themes/00s/pm.css
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
.table {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 90%;
|
||||
margin: 0 auto 10px auto;
|
||||
}
|
||||
|
||||
.table .header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex: 1;
|
||||
font-weight: 800;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.table .body {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.new-message {
|
||||
display: inline-block;
|
||||
font-size: 0.5rem;
|
||||
margin-right: 10px;
|
||||
padding: 3px;
|
||||
}
|
||||
30
static/themes/00s/post.css
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
.postmenu {
|
||||
width: 300px;
|
||||
margin: 10px;
|
||||
float: right;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.postmenu .header {
|
||||
padding: 5px;
|
||||
font-size: 1.2rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.postmenu .body {
|
||||
padding: 10px;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.postmenu .body ul {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.postmenu .body ul li {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
list-style-type: none;
|
||||
padding: 5px 0;
|
||||
}
|
||||
228
static/themes/00s/profile.css
Normal file
|
|
@ -0,0 +1,228 @@
|
|||
.profile-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.profile-avatar {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.profile-info {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.profile-name {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.profile-username {
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.profile-stats {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
||||
gap: 1rem;
|
||||
margin: 2rem 0;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
text-align: center;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: 0.9rem;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.profile-bio {
|
||||
line-height: 1.6;
|
||||
margin: 2rem 0;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.profile-contact {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.contact-button {
|
||||
padding: 0.8rem 1.5rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.profile-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 1fr;
|
||||
gap: 2rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.profile-main {
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.profile-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.avatar-container {
|
||||
position: relative;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
.level-badge {
|
||||
position: absolute;
|
||||
padding: 0.5rem;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.level-number {
|
||||
font-size: 1rem;
|
||||
font-weight: bold;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.profile-info {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.username {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.joined-date {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.profile-bio {
|
||||
margin-top: 2rem;
|
||||
padding-top: 2rem;
|
||||
}
|
||||
|
||||
.bio-content {
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* Colonne de droite */
|
||||
.profile-stats {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.stats-card, .achievements-card {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.stats-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 1rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
text-align: center;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: 0.9rem;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.achievements-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.badge-item {
|
||||
text-align: center;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
.badge-item img {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.badge-name {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.profile-actions {
|
||||
margin-top: 2rem;
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.inventory {
|
||||
padding: 1.5rem;
|
||||
width: 98%;
|
||||
margin: 10px auto;
|
||||
}
|
||||
|
||||
.inventory-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
||||
gap: 15px;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.inventory-item {
|
||||
text-align: center;
|
||||
margin: 15px;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.item-quantity {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 768px) {
|
||||
.profile-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.stats-grid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
69
static/themes/00s/shop.css
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
.shop {
|
||||
padding: 10px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
flex-direction: row;
|
||||
}
|
||||
.card-shop {
|
||||
margin: 15px 0;
|
||||
padding: 15px;
|
||||
width: 250px;
|
||||
min-height: 380px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
margin-right: 15px;
|
||||
vertical-align: top;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.card-shop img {
|
||||
max-width: 220px;
|
||||
margin-bottom: 10px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.card-shop .card-title {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.card-shop .card-text {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.card-shop .card-content {
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.card-shop .button-container {
|
||||
margin-top: auto;
|
||||
text-align: center;
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
||||
a.btn-shop {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.btn-shop-primary {
|
||||
padding: 5px 15px;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.btn-shop-secondary {
|
||||
padding: 5px 15px;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.btn-shop-large {
|
||||
padding: 10px 20px;
|
||||
height: 65px;
|
||||
}
|
||||
455
static/themes/00s/structure.css
Executable file
|
|
@ -0,0 +1,455 @@
|
|||
/* Marges, paddings, dimensions, flexbox */
|
||||
*, html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
/* margin: 20px 0 20px 0; */
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
p, ul {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
p.date {
|
||||
font-size: 0.8em;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.notification {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.notification ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.notification ul li {
|
||||
padding: 10px;
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.container, .menu {
|
||||
padding: 0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.container {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.menu h2 {
|
||||
padding: 10px;
|
||||
margin: 0 0 20px;
|
||||
width: 100%;
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.menu ul {
|
||||
list-style: none;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.container h2 {
|
||||
padding: 10px;
|
||||
margin: 0 0 20px;
|
||||
width: 100%;
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
/* Menu horizontal */
|
||||
.menu-horizontal {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.menu-horizontal ul {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.menu-horizontal ul li {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.menu-horizontal ul li a {
|
||||
display: block;
|
||||
padding: 10px 20px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.menu-horizontal .dropdown {
|
||||
display: none;
|
||||
position: absolute;
|
||||
min-width: 200px;
|
||||
z-index: 1000;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.menu-horizontal li:hover .dropdown {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.menu-horizontal .dropdown li {
|
||||
width: 100%;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.menu-horizontal .dropdown a {
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.badge {
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
/* Style du menu burger */
|
||||
.burger-menu {
|
||||
display: none;
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.burger-icon {
|
||||
background: none;
|
||||
border: none;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.burger-icon span {
|
||||
display: block;
|
||||
width: 30px;
|
||||
height: 3px;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
body {
|
||||
margin-top: 80px;
|
||||
}
|
||||
|
||||
.burger-menu {
|
||||
display: block;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 1000;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.menu-horizontal {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 50px; /* Hauteur du burger menu */
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.menu-horizontal.active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.menu-horizontal ul {
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.menu-horizontal ul li {
|
||||
width: 100%;
|
||||
border-bottom: 1px solid #333;
|
||||
}
|
||||
|
||||
.menu-horizontal ul li a {
|
||||
padding: 15px;
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Style des sous-menus sur mobile */
|
||||
.menu-horizontal ul ul {
|
||||
position: static;
|
||||
display: none;
|
||||
width: 100%;
|
||||
background: #222;
|
||||
}
|
||||
|
||||
.menu-horizontal li.active > ul {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.menu-horizontal .dropdown {
|
||||
position: static;
|
||||
width: 100%;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.menu-horizontal .dropdown li {
|
||||
padding-left: 20px; /* Indentation pour les sous-menus */
|
||||
}
|
||||
|
||||
.menu-horizontal li:hover .dropdown {
|
||||
display: none; /* Désactive l'affichage au hover sur mobile */
|
||||
}
|
||||
|
||||
.menu-horizontal li.active .dropdown {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Animation du burger quand actif */
|
||||
.burger-menu.active .burger-icon span:first-child {
|
||||
transform: rotate(45deg) translate(8px, 6px);
|
||||
}
|
||||
|
||||
.burger-menu.active .burger-icon span:nth-child(2) {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.burger-menu.active .burger-icon span:last-child {
|
||||
transform: rotate(-45deg) translate(8px, -6px);
|
||||
}
|
||||
|
||||
/* Styles des sous-menus sur mobile */
|
||||
.menu-horizontal .dropdown {
|
||||
position: static;
|
||||
width: 100%;
|
||||
box-shadow: none;
|
||||
background: #222;
|
||||
}
|
||||
|
||||
.menu-horizontal li:hover .dropdown {
|
||||
display: none; /* Désactive l'affichage au hover sur mobile */
|
||||
}
|
||||
|
||||
.menu-horizontal li.active .dropdown {
|
||||
display: block; /* Affiche uniquement quand .active est présent */
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 769px) {
|
||||
.burger-menu {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.menu-horizontal {
|
||||
display: block !important;
|
||||
}
|
||||
}
|
||||
|
||||
.news-header, .post-card-header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.contrib {
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.contrib a {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
|
||||
span.post-offline {
|
||||
font-weight:bold;
|
||||
margin:5px;
|
||||
background-image: url('../../img/icons/shield-red-cross.png');
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
span.post-online {
|
||||
font-weight:bold;
|
||||
margin:5px;
|
||||
background-image: url('../../img/icons/shield-green-v.png');
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
/* forum */
|
||||
.forum {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 0 0 10px 0;
|
||||
}
|
||||
|
||||
.forum .row {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.forum h3 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.forum-header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
border: 1px 1px 0 1px solid;
|
||||
margin: 10px 10px -10px 10px;
|
||||
}
|
||||
|
||||
.forum-column, .forum-column-detail {
|
||||
flex: 1;
|
||||
flex-direction: column;
|
||||
border: 1px solid;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.forum-column:nth-child(1) {
|
||||
flex: 2;
|
||||
}
|
||||
|
||||
.forum-column:nth-child(2), .forum-column:nth-child(3) {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.forum-column-detail:nth-child(1) {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.forum-column-detail:nth-child(2) {
|
||||
flex: 4;
|
||||
}
|
||||
|
||||
.forum-column-detail ul {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.forum-body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border: 0 1px 1px 1px solid;
|
||||
margin: 10px 10px -10px 10px;
|
||||
}
|
||||
|
||||
.forum-body img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.forum-row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
border: 0 1px 0 1px solid;
|
||||
}
|
||||
|
||||
.stats_forum {
|
||||
margin: 20px 0 10px 0;
|
||||
border-top: 2px solid
|
||||
}
|
||||
|
||||
.stats_forum ul {
|
||||
list-style-type: none;
|
||||
border: 1px solid;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.stats_forum ul li {
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
ul.breadcrumbs {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
font-size: 1rem;
|
||||
list-style-type: none;
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
ul.breadcrumbs li {
|
||||
margin: 0 5px 0 5px;
|
||||
}
|
||||
|
||||
ul.breadcrumbs li a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Pagination */
|
||||
ul.pagination {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
list-style-type: none;
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
ul.pagination li.page-item {
|
||||
margin: 0 5px 0 5px;
|
||||
}
|
||||
|
||||
ul.pagination li.page-item a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.page-link {
|
||||
padding: 5px 10px;
|
||||
border: 2px solid;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
max-width: max-content;
|
||||
font-size: 0.8rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
li.disabled {
|
||||
pointer-events: none;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: separate;
|
||||
border-spacing: 2px;
|
||||
}
|
||||
|
||||
td, th {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
/* Ajout d'un compteur de visiteurs style années 2000 */
|
||||
.visitor-counter {
|
||||
padding: 5px;
|
||||
text-align: center;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
.warning-announce-not-mobile-compatible {
|
||||
display: block;
|
||||
position: absolute;
|
||||
padding: 10px;
|
||||
margin: 10px;
|
||||
border: 1px solid orange;
|
||||
background-color: rgb(255, 215, 140);
|
||||
color: rgb(152, 120, 60);
|
||||
text-shadow: none;
|
||||
z-index: 1000;
|
||||
}
|
||||
}
|
||||
883
static/themes/00s/styles.css
Normal file
|
|
@ -0,0 +1,883 @@
|
|||
:root {
|
||||
--primary-color: #2b90d3;
|
||||
--secondary-color: #393939;
|
||||
--tertiary-color: #f5f5f5;
|
||||
--success-color: #28a745;
|
||||
--danger-color: #dc3545;
|
||||
--warning-color: #ffc107;
|
||||
|
||||
--text-primary-color: #393939;
|
||||
--text-secondary-color: #f5f5f5;
|
||||
--text-tertiary-color: #2b90d3;
|
||||
|
||||
--bg-primary-color: #f5f5f5;
|
||||
--bg-secondary-color: #393939;
|
||||
--bg-grey-color: #4c4c4c;
|
||||
|
||||
--link-color: #2b90d3;
|
||||
--link-hover-color: #28a745;
|
||||
--link-danger-color: #dc3545;
|
||||
--link-admin-color: #dc3545;
|
||||
--link-new-item-color: #28a745;
|
||||
|
||||
--border-color-primary: #333639;
|
||||
--border-color-secondary: #b8b8b8;
|
||||
}
|
||||
|
||||
/* HTML & BODY */
|
||||
html, body {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
font-size: 16px;
|
||||
color: var(--text-primary-color);
|
||||
background-color: var(--bg-primary-color);
|
||||
}
|
||||
|
||||
/* NOTIFICATIONS */
|
||||
.notification {
|
||||
|
||||
}
|
||||
|
||||
.notification ul li {
|
||||
|
||||
}
|
||||
|
||||
.notification li.success {
|
||||
|
||||
}
|
||||
|
||||
.notification li.error {
|
||||
|
||||
}
|
||||
|
||||
/* CONTAINER */
|
||||
.container {
|
||||
border: 1px solid var(--border-color-primary);
|
||||
border-radius: 2px;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.container h2 {
|
||||
background-color: var(--primary-color);
|
||||
color: var(--text-secondary-color);
|
||||
text-shadow: 0 0 10px rgba(153, 204, 255, 0.5);
|
||||
}
|
||||
|
||||
.container h2::after {
|
||||
content: '';
|
||||
}
|
||||
|
||||
/* MENU */
|
||||
.menu-horizontal {
|
||||
background: linear-gradient(to bottom, var(--bg-grey-color) 0%, var(--bg-secondary-color) 100%);
|
||||
border: 1px solid #666;
|
||||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.menu-horizontal ul {
|
||||
|
||||
}
|
||||
|
||||
.menu-horizontal ul li {
|
||||
|
||||
}
|
||||
|
||||
.menu-horizontal ul li a {
|
||||
color: var(--text-secondary-color);
|
||||
text-shadow: 1px 1px 0 var(--text-primary-color);
|
||||
}
|
||||
|
||||
.menu-horizontal ul li a:hover {
|
||||
color: var(--text-tertiary-color);
|
||||
}
|
||||
|
||||
.menu-horizontal .dropdown {
|
||||
|
||||
}
|
||||
|
||||
.menu-horizontal li:hover .dropdown {
|
||||
background-color: var(--bg-secondary-color);
|
||||
}
|
||||
|
||||
.menu-horizontal .dropdown li {
|
||||
|
||||
}
|
||||
|
||||
.menu-horizontal .dropdown a {
|
||||
|
||||
}
|
||||
|
||||
.menu {
|
||||
background-color: var(--bg-primary-color);
|
||||
border: 1px solid var(--border-color-secondary);
|
||||
border-radius: 2px;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.menu h2 {
|
||||
background-color: var(--secondary-color);
|
||||
color: var(--text-secondary-color);
|
||||
}
|
||||
|
||||
.menu ul {
|
||||
|
||||
}
|
||||
|
||||
.menu ul li {
|
||||
|
||||
}
|
||||
|
||||
.menu ul li::before {
|
||||
|
||||
}
|
||||
|
||||
.menu ul li a {
|
||||
|
||||
}
|
||||
|
||||
.menu ul li a:hover {
|
||||
|
||||
}
|
||||
|
||||
.menu ul.guestbook {
|
||||
|
||||
}
|
||||
|
||||
.menu ul.guestbook li span.date {
|
||||
|
||||
}
|
||||
|
||||
.menu ul.guestbook li span.author {
|
||||
|
||||
}
|
||||
|
||||
.guestbook p span.author {
|
||||
|
||||
}
|
||||
|
||||
.new-item-menu::after {
|
||||
|
||||
}
|
||||
|
||||
.badge {
|
||||
|
||||
}
|
||||
|
||||
/* CONTRIB PAGE */
|
||||
.contrib {
|
||||
|
||||
}
|
||||
|
||||
.contrib a {
|
||||
|
||||
}
|
||||
|
||||
.contrib a:hover {
|
||||
|
||||
}
|
||||
|
||||
.movies, .musics, .tech {
|
||||
|
||||
}
|
||||
|
||||
.movies:hover, .musics:hover, .tech:hover {
|
||||
|
||||
}
|
||||
|
||||
.category {
|
||||
|
||||
}
|
||||
|
||||
.category:hover {
|
||||
|
||||
}
|
||||
|
||||
.games, .movies, .musics, .news_contrib, .tech {
|
||||
|
||||
}
|
||||
|
||||
.games:hover, .movies:hover, .musics:hover, .news_contrib:hover, .tech:hover {
|
||||
|
||||
}
|
||||
|
||||
.games::before, .movies::before, .musics::before, .news_contrib::before, .tech::before {
|
||||
|
||||
}
|
||||
|
||||
.games:hover::before, .movies:hover::before, .musics:hover::before, .news_contrib:hover::before, .tech:hover::before {
|
||||
|
||||
}
|
||||
|
||||
/* BBCODE */
|
||||
.bbcode-bar {
|
||||
|
||||
}
|
||||
|
||||
.draggable {
|
||||
|
||||
}
|
||||
|
||||
.draggable .header {
|
||||
|
||||
}
|
||||
|
||||
.draggable .close-button {
|
||||
|
||||
}
|
||||
|
||||
h2.h2-bbcode {
|
||||
|
||||
}
|
||||
|
||||
fieldset.quote-bbcode {
|
||||
|
||||
}
|
||||
|
||||
/* LINKS */
|
||||
a {
|
||||
|
||||
}
|
||||
|
||||
a:hover {
|
||||
|
||||
}
|
||||
|
||||
a.danger {
|
||||
|
||||
}
|
||||
|
||||
a.text-admin {
|
||||
|
||||
}
|
||||
|
||||
a.new-item-menu {
|
||||
|
||||
}
|
||||
|
||||
a.new-item-menu:hover {
|
||||
|
||||
}
|
||||
|
||||
a.new-item-menu::after {
|
||||
|
||||
}
|
||||
|
||||
/* FORUM */
|
||||
.forum h3 {
|
||||
|
||||
}
|
||||
|
||||
.forum .category-name {
|
||||
|
||||
}
|
||||
|
||||
.forum .forum-row {
|
||||
|
||||
}
|
||||
|
||||
.forum .forum-row:hover {
|
||||
|
||||
}
|
||||
|
||||
.forum .forum-header {
|
||||
|
||||
}
|
||||
|
||||
.stats_forum ul {
|
||||
|
||||
}
|
||||
|
||||
span.unread-badge {
|
||||
|
||||
}
|
||||
|
||||
/* Animation pour le badge non-lu */
|
||||
@keyframes pulse {
|
||||
|
||||
}
|
||||
|
||||
/* Animation pour le badge NEW */
|
||||
@keyframes blink {
|
||||
|
||||
}
|
||||
|
||||
/* FORMS */
|
||||
.btn {
|
||||
|
||||
}
|
||||
|
||||
input[type="submit"], button {
|
||||
|
||||
}
|
||||
|
||||
button, .btn-default {
|
||||
|
||||
}
|
||||
|
||||
button:hover, .btn-default:hover {
|
||||
|
||||
}
|
||||
|
||||
.btn::after, input[type="submit"]::after, button::after {
|
||||
|
||||
}
|
||||
|
||||
.btn:hover::after, input[type="submit"]:hover::after, button:hover::after {
|
||||
|
||||
}
|
||||
|
||||
.btn-add {
|
||||
|
||||
}
|
||||
|
||||
.btn-add:hover {
|
||||
|
||||
}
|
||||
|
||||
.btn-danger {
|
||||
|
||||
}
|
||||
|
||||
.btn-danger:hover {
|
||||
|
||||
}
|
||||
|
||||
.btn-warning {
|
||||
|
||||
}
|
||||
|
||||
.btn-warning:hover {
|
||||
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"], input[type="email"], select, textarea {
|
||||
|
||||
}
|
||||
|
||||
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, select:focus, textarea:focus {
|
||||
|
||||
}
|
||||
|
||||
/* PAGINATION */
|
||||
.page-link {
|
||||
|
||||
}
|
||||
|
||||
li.active span {
|
||||
|
||||
}
|
||||
|
||||
li.disabled span {
|
||||
|
||||
}
|
||||
|
||||
/* FOOTER */
|
||||
.footer {
|
||||
|
||||
}
|
||||
|
||||
.footer p {
|
||||
|
||||
}
|
||||
|
||||
/* GAMES */
|
||||
.card-game {
|
||||
|
||||
}
|
||||
|
||||
.card-game:hover {
|
||||
|
||||
}
|
||||
|
||||
.card-game .header {
|
||||
|
||||
}
|
||||
|
||||
.card-game .body {
|
||||
|
||||
}
|
||||
|
||||
.card-game .footer {
|
||||
|
||||
}
|
||||
|
||||
.countdown {
|
||||
|
||||
}
|
||||
|
||||
.game-bac-letter {
|
||||
|
||||
}
|
||||
|
||||
table.bac, table.bac th, table.bac tr, table.bac td {
|
||||
|
||||
}
|
||||
|
||||
table.bac th {
|
||||
|
||||
}
|
||||
|
||||
table.quiz, table.quiz th, table.quiz tr, table.quiz td {
|
||||
|
||||
}
|
||||
|
||||
table.quiz th {
|
||||
|
||||
}
|
||||
|
||||
.quiz-item {
|
||||
|
||||
}
|
||||
|
||||
.quiz-item::after {
|
||||
|
||||
}
|
||||
|
||||
.quiz-item:hover {
|
||||
|
||||
}
|
||||
|
||||
.quiz-item h3 {
|
||||
|
||||
}
|
||||
|
||||
.quiz-item h3 a {
|
||||
|
||||
}
|
||||
|
||||
.quiz-item h3 a:hover {
|
||||
|
||||
}
|
||||
|
||||
.quiz-item p {
|
||||
|
||||
}
|
||||
|
||||
.quiz-item p:last-child {
|
||||
|
||||
}
|
||||
|
||||
.quiz-container {
|
||||
|
||||
}
|
||||
|
||||
.quiz-title {
|
||||
|
||||
}
|
||||
|
||||
.quiz-question {
|
||||
|
||||
}
|
||||
|
||||
.question-header {
|
||||
|
||||
}
|
||||
|
||||
.question-content h3 {
|
||||
|
||||
}
|
||||
|
||||
.choices-container {
|
||||
|
||||
}
|
||||
|
||||
.choice-item {
|
||||
|
||||
}
|
||||
|
||||
.choice-item:hover {
|
||||
|
||||
}
|
||||
|
||||
.choice-item input[type="radio"] {
|
||||
|
||||
}
|
||||
|
||||
.choice-item label {
|
||||
|
||||
}
|
||||
|
||||
.submit-container {
|
||||
|
||||
}
|
||||
|
||||
.submit-button {
|
||||
|
||||
}
|
||||
|
||||
.submit-button:hover {
|
||||
|
||||
}
|
||||
|
||||
.breadcrumbs {
|
||||
|
||||
}
|
||||
|
||||
.breadcrumbs li {
|
||||
|
||||
}
|
||||
|
||||
.breadcrumbs li a {
|
||||
|
||||
}
|
||||
|
||||
.breadcrumbs li a:hover {
|
||||
|
||||
}
|
||||
|
||||
.quiz-container {
|
||||
|
||||
}
|
||||
|
||||
.quiz-title {
|
||||
|
||||
}
|
||||
|
||||
.quiz-question {
|
||||
|
||||
}
|
||||
|
||||
.quiz-header {
|
||||
|
||||
}
|
||||
|
||||
.choice-item {
|
||||
|
||||
}
|
||||
|
||||
.choice-item:hover {
|
||||
|
||||
}
|
||||
|
||||
.choice-item label {
|
||||
|
||||
}
|
||||
|
||||
.submit-button {
|
||||
|
||||
}
|
||||
|
||||
.submit-button:hover {
|
||||
|
||||
}
|
||||
|
||||
.quiz-result-container {
|
||||
|
||||
}
|
||||
|
||||
.score-number {
|
||||
|
||||
}
|
||||
|
||||
.score-number.high { }
|
||||
.score-number.medium { }
|
||||
.score-number.low { }
|
||||
|
||||
.score-message {
|
||||
|
||||
}
|
||||
|
||||
.quiz-score {
|
||||
|
||||
}
|
||||
|
||||
.progress-path {
|
||||
|
||||
}
|
||||
|
||||
.progress-path.high {
|
||||
|
||||
}
|
||||
|
||||
.progress-path.medium {
|
||||
|
||||
}
|
||||
|
||||
.progress-path.low {
|
||||
|
||||
}
|
||||
|
||||
.high { }
|
||||
|
||||
.medium { }
|
||||
|
||||
.low { }
|
||||
|
||||
/* PM */
|
||||
.table .header {
|
||||
|
||||
}
|
||||
|
||||
.table .body {
|
||||
|
||||
}
|
||||
|
||||
.new-message {
|
||||
|
||||
}
|
||||
|
||||
/* POSTS */
|
||||
.postmenu {
|
||||
|
||||
}
|
||||
|
||||
.postmenu .header {
|
||||
|
||||
}
|
||||
|
||||
.postmenu .body ul li:hover {
|
||||
|
||||
}
|
||||
|
||||
.post-card {
|
||||
|
||||
}
|
||||
|
||||
.post-card-header {
|
||||
|
||||
}
|
||||
|
||||
.news-header {
|
||||
|
||||
}
|
||||
|
||||
/* PROFILE */
|
||||
.profile-avatar {
|
||||
|
||||
}
|
||||
|
||||
.profile-avatar:hover {
|
||||
|
||||
}
|
||||
|
||||
.profile-name {
|
||||
|
||||
}
|
||||
|
||||
.username {
|
||||
|
||||
}
|
||||
|
||||
.profile-stats {
|
||||
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
|
||||
}
|
||||
|
||||
.profile-bio {
|
||||
|
||||
}
|
||||
|
||||
.contact-button {
|
||||
|
||||
}
|
||||
|
||||
.contact-button:hover {
|
||||
|
||||
}
|
||||
|
||||
.profile-main {
|
||||
|
||||
}
|
||||
|
||||
.level-badge {
|
||||
|
||||
}
|
||||
|
||||
.joined-date {
|
||||
|
||||
}
|
||||
|
||||
.bio-content {
|
||||
|
||||
}
|
||||
|
||||
.stats-card, .achievements-card {
|
||||
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
|
||||
}
|
||||
|
||||
.badge-name {
|
||||
|
||||
}
|
||||
|
||||
.inventory {
|
||||
|
||||
}
|
||||
|
||||
.inventory-item {
|
||||
|
||||
}
|
||||
|
||||
.inventory-item:hover {
|
||||
|
||||
}
|
||||
|
||||
.inventory-item a {
|
||||
|
||||
}
|
||||
|
||||
.inventory-item a:hover {
|
||||
|
||||
}
|
||||
|
||||
.item-quantity {
|
||||
|
||||
}
|
||||
|
||||
/* SHOP */
|
||||
.card-shop {
|
||||
|
||||
}
|
||||
|
||||
.card-shop:hover {
|
||||
|
||||
}
|
||||
|
||||
.card-shop .card-title {
|
||||
|
||||
}
|
||||
|
||||
.card-shop .card-text {
|
||||
|
||||
}
|
||||
|
||||
.btn-shop-primary {
|
||||
|
||||
}
|
||||
|
||||
.btn-shop-primary:hover {
|
||||
|
||||
}
|
||||
|
||||
.btn-shop-secondary {
|
||||
|
||||
}
|
||||
|
||||
.btn-shop-secondary:hover {
|
||||
|
||||
}
|
||||
|
||||
/* COMMONS */
|
||||
.deactivate {
|
||||
|
||||
}
|
||||
|
||||
/* Animation pixel pour les hovers */
|
||||
@keyframes pixel-pulse {
|
||||
|
||||
}
|
||||
|
||||
/* Animation supplémentaire pour les interactions */
|
||||
@keyframes item-hover {
|
||||
|
||||
}
|
||||
|
||||
/* QUIZ RESULTS */
|
||||
.quiz-result-card {
|
||||
|
||||
}
|
||||
|
||||
.progress-circle-container {
|
||||
|
||||
}
|
||||
|
||||
.progress-circle {
|
||||
|
||||
}
|
||||
|
||||
.circular-chart {
|
||||
|
||||
}
|
||||
|
||||
.circular-chart path {
|
||||
|
||||
}
|
||||
|
||||
.progress-path {
|
||||
|
||||
}
|
||||
|
||||
.progress-path.high {
|
||||
|
||||
}
|
||||
|
||||
.progress-path.medium {
|
||||
|
||||
}
|
||||
|
||||
.progress-path.low {
|
||||
|
||||
}
|
||||
|
||||
.percentage-text {
|
||||
|
||||
}
|
||||
|
||||
.score-details {
|
||||
|
||||
}
|
||||
|
||||
.score-details h3 {
|
||||
|
||||
}
|
||||
|
||||
.score-number {
|
||||
|
||||
}
|
||||
|
||||
.score-number.high {
|
||||
|
||||
}
|
||||
|
||||
.score-number.medium {
|
||||
|
||||
}
|
||||
|
||||
.score-number.low {
|
||||
|
||||
}
|
||||
|
||||
.score-message {
|
||||
|
||||
}
|
||||
|
||||
.actions {
|
||||
|
||||
}
|
||||
|
||||
.actions .btn {
|
||||
|
||||
}
|
||||
|
||||
.actions .btn:hover {
|
||||
|
||||
}
|
||||
|
||||
@keyframes glow-green {
|
||||
|
||||
}
|
||||
|
||||
@keyframes glow-yellow {
|
||||
|
||||
}
|
||||
|
||||
@keyframes glow-red {
|
||||
|
||||
}
|
||||
46
static/themes/00s/typo.css
Executable file
|
|
@ -0,0 +1,46 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=Tahoma:wght@400;700&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Verdana:wght@400;700&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Trebuchet+MS:wght@400;700&display=swap');
|
||||
|
||||
body {
|
||||
font-family: 'Verdana', sans-serif;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
h1, h2, h3, .breadcrumbs, .btn, input, select, textarea, button, .notification, .page-link, .guestbook p {
|
||||
font-family: 'Trebuchet MS', sans-serif;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
font-family: 'Tahoma', sans-serif;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.btn, button {
|
||||
font-family: 'Trebuchet MS', sans-serif;
|
||||
text-transform: uppercase;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.menu h2 {
|
||||
font-family: 'Verdana', sans-serif;
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.container {
|
||||
font-family: 'Verdana', sans-serif;
|
||||
}
|
||||
|
||||
.blink {
|
||||
animation: blink 1s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
0% { opacity: 1; }
|
||||
50% { opacity: 0; }
|
||||
100% { opacity: 1; }
|
||||
}
|
||||
258
static/themes/80s/banner.css
Executable file
|
|
@ -0,0 +1,258 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
|
||||
|
||||
.banner {
|
||||
width: 100%;
|
||||
min-width: 1000px;
|
||||
height: 300px;
|
||||
background: linear-gradient(180deg, #000033 0%, #330066 100%);
|
||||
border-top: 3px solid #ff00ff;
|
||||
border-bottom: 3px solid #00ffff;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
/* Soleil rétro */
|
||||
.sun {
|
||||
position: absolute;
|
||||
top: 12%; /* Ajusté pour mieux positionner le soleil plus grand */
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 400px; /* Doublé la largeur */
|
||||
height: 200px; /* Doublé la hauteur */
|
||||
background: linear-gradient(to top, #ff6b6b, #ffd93d);
|
||||
border-radius: 200px 200px 0 0; /* Ajusté pour maintenir la forme en demi-cercle */
|
||||
overflow: hidden;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* Barres horizontales du soleil */
|
||||
.sun::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: repeating-linear-gradient(
|
||||
to bottom,
|
||||
transparent 0%,
|
||||
transparent 10%,
|
||||
rgba(0, 0, 0, 0.2) 10%,
|
||||
rgba(0, 0, 0, 0.2) 20%
|
||||
);
|
||||
mask: linear-gradient(
|
||||
to bottom,
|
||||
transparent,
|
||||
black 50%
|
||||
);
|
||||
-webkit-mask: linear-gradient(
|
||||
to bottom,
|
||||
transparent,
|
||||
black 50%
|
||||
);
|
||||
}
|
||||
|
||||
/* Grille au sol */
|
||||
.grid {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 150px;
|
||||
background:
|
||||
linear-gradient(to top,
|
||||
rgba(255, 0, 255, 1) 0%,
|
||||
rgba(255, 0, 255, 0) 100%
|
||||
),
|
||||
linear-gradient(
|
||||
90deg,
|
||||
rgb(255, 255, 255) 1px,
|
||||
transparent 1px
|
||||
) 0 0,
|
||||
linear-gradient(
|
||||
rgb(255, 255, 255) 1px,
|
||||
transparent 1px
|
||||
) 0 0;
|
||||
background-size: 100% 100%, 40px 40px, 40px 40px;
|
||||
transform: perspective(500px) rotateX(60deg);
|
||||
transform-origin: bottom;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
/* Arrière-plan galaxie */
|
||||
.galaxy-background {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background:
|
||||
linear-gradient(90deg,
|
||||
rgba(255, 0, 255, 0.1) 0%,
|
||||
rgba(0, 255, 255, 0.1) 100%
|
||||
),
|
||||
linear-gradient(0deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
/* Texte principal */
|
||||
.banner-text {
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
word-spacing: 10px;
|
||||
font-size: 60px;
|
||||
color: #ff00ff;
|
||||
text-shadow:
|
||||
3px 3px 0 #00ffff,
|
||||
-3px -3px 0 #ff00ff,
|
||||
0 0 10px rgba(255, 0, 255, 0.8),
|
||||
0 0 20px rgba(0, 255, 255, 0.8);
|
||||
z-index: 2;
|
||||
position: relative;
|
||||
animation: text-flicker 2s infinite;
|
||||
}
|
||||
|
||||
@keyframes text-flicker {
|
||||
0%, 100% { opacity: 1; }
|
||||
50% { opacity: 0.8; }
|
||||
}
|
||||
|
||||
/* Slogan */
|
||||
.slogan {
|
||||
color: #00ffff;
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
font-size: 14px;
|
||||
text-shadow:
|
||||
2px 2px 0 #ff00ff,
|
||||
0 0 5px rgba(0, 255, 255, 0.8);
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
white-space: nowrap;
|
||||
animation: slide 30s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes slide {
|
||||
0% { transform: translateX(100%); }
|
||||
50% { transform: translateX(-100%); }
|
||||
100% { transform: translateX(100%); }
|
||||
}
|
||||
|
||||
/* Vaisseau spatial */
|
||||
.spaceship {
|
||||
position: absolute;
|
||||
width: 60px;
|
||||
height: 30px;
|
||||
z-index: 3;
|
||||
animation: fly 15s linear infinite;
|
||||
}
|
||||
|
||||
/* Corps principal du vaisseau */
|
||||
.spaceship::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
|
||||
clip-path: polygon(
|
||||
100% 50%, /* Point droit */
|
||||
80% 20%, /* Haut droit */
|
||||
60% 20%, /* Haut milieu arrière */
|
||||
40% 0%, /* Pointe avant */
|
||||
20% 20%, /* Haut milieu avant */
|
||||
0% 30%, /* Haut avant */
|
||||
0% 70%, /* Bas avant */
|
||||
20% 80%, /* Bas milieu avant */
|
||||
40% 100%, /* Pointe arrière */
|
||||
60% 80%, /* Bas milieu arrière */
|
||||
80% 80% /* Bas droit */
|
||||
);
|
||||
filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.8));
|
||||
}
|
||||
|
||||
/* Cockpit */
|
||||
.spaceship::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
right: 40%;
|
||||
left: auto;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
background: rgba(0, 255, 255, 0.8);
|
||||
border-radius: 50%;
|
||||
box-shadow:
|
||||
0 0 10px #00ffff,
|
||||
inset 0 0 5px #ffffff;
|
||||
}
|
||||
|
||||
/* Réacteur */
|
||||
.spaceship .engine {
|
||||
position: absolute;
|
||||
left: -15px;
|
||||
right: auto;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 20px;
|
||||
height: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.spaceship .engine::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(-90deg, #ff6b6b, #ffd93d); /* Direction inversée */
|
||||
animation: thrust 0.2s linear infinite;
|
||||
clip-path: polygon(
|
||||
0 0,
|
||||
100% 50%,
|
||||
0 100%
|
||||
);
|
||||
transform: rotate(180deg); /* Rotation complète au lieu du scaleX */
|
||||
filter: blur(2px);
|
||||
}
|
||||
|
||||
@keyframes thrust {
|
||||
0%, 100% {
|
||||
opacity: 1;
|
||||
transform: rotate(180deg) scaleX(1);
|
||||
}
|
||||
50% {
|
||||
opacity: 0.5;
|
||||
transform: rotate(180deg) scaleX(0.8);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fly {
|
||||
0% {
|
||||
right: -100px;
|
||||
top: 30%;
|
||||
transform: rotate(175deg);
|
||||
}
|
||||
25% {
|
||||
right: 25%;
|
||||
top: 20%;
|
||||
transform: rotate(185deg);
|
||||
}
|
||||
50% {
|
||||
right: 50%;
|
||||
top: 15%;
|
||||
transform: rotate(175deg);
|
||||
}
|
||||
75% {
|
||||
right: 75%;
|
||||
top: 25%;
|
||||
transform: rotate(185deg);
|
||||
}
|
||||
100% {
|
||||
right: 100%;
|
||||
top: 30%;
|
||||
transform: rotate(175deg);
|
||||
}
|
||||
}
|
||||
98
static/themes/80s/bbcode.css
Normal file
|
|
@ -0,0 +1,98 @@
|
|||
|
||||
.bbcode-bar, .bbcode-bar ul {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.bbcode-bar {
|
||||
flex-direction: column;
|
||||
background-color: black;
|
||||
border: 1px solid #fff;
|
||||
margin: 0 -5px -5px 5px;
|
||||
}
|
||||
|
||||
.bbcode-bar ul {
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.bbcode-bar li {
|
||||
margin: 0 10px 5px 10px;
|
||||
font-family: 'Press Start 2P';
|
||||
}
|
||||
|
||||
.bbcode-bar button {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.draggable {
|
||||
width: 600px;
|
||||
height: 300px;
|
||||
overflow: auto;
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
background-color: rgba(0,0,0, 0.8);
|
||||
border: 2px solid #ccc;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
||||
z-index: 1000;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.draggable .header {
|
||||
position: fixed;
|
||||
width: 596px;
|
||||
background-color: #082039;
|
||||
color: #fff;
|
||||
padding: 5px;
|
||||
cursor: move;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.draggable .close-button {
|
||||
color: white;
|
||||
font-size: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.draggable .content {
|
||||
padding: 15px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
ul.bbcode-list {
|
||||
margin-left: 50px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
h1.h1-bbcode {
|
||||
font-family: "Roboto";
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
h2.h2-bbcode {
|
||||
font-family: "Roboto";
|
||||
font-size: 1.5rem;
|
||||
background-color: rgba(0, 0, 0, 0.0);
|
||||
border: none;
|
||||
}
|
||||
|
||||
h3.h3-bbcode {
|
||||
font-family: "Roboto";
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
fieldset.quote-bbcode {
|
||||
padding: 10px;
|
||||
border: 1px solid #fff;
|
||||
background-color: rgba(0,0,0, 0.4);
|
||||
}
|
||||
|
||||
fieldset.quote-bbcode legend {
|
||||
border: 1px solid #fff;
|
||||
padding: 5px;
|
||||
background-color: black;
|
||||
}
|
||||
326
static/themes/80s/colors.css
Executable file
|
|
@ -0,0 +1,326 @@
|
|||
html, body {
|
||||
background: #000000;
|
||||
background-image: linear-gradient(to right, #ff00ff 1px, transparent 1px),
|
||||
linear-gradient(to bottom, #ff00ff 1px, transparent 1px);
|
||||
background-size: 20px 20px;
|
||||
}
|
||||
|
||||
.notification li.success {
|
||||
border-color: #ffffff;
|
||||
color: #086123;
|
||||
background-color: #00fc45;
|
||||
box-shadow: #00ff00 0 0 15px;
|
||||
}
|
||||
|
||||
.notification li.error {
|
||||
border-color: #ffffff;
|
||||
color: #4b0c0c;
|
||||
background-color: #e00e0e;
|
||||
box-shadow: #ff0000 0 0 15px;
|
||||
}
|
||||
|
||||
.container, .menu {
|
||||
background-color: #000033;
|
||||
border-color: #ff00ff;
|
||||
box-shadow: 0 0 15px #ff00ff;
|
||||
}
|
||||
|
||||
.container {
|
||||
background: url('/static/themes/default/img/bg_container.png');
|
||||
}
|
||||
|
||||
.menu {
|
||||
background: url('/static/themes/default/img/archer_sprite.png') bottom right;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 45%;
|
||||
background-color: #4750a3;
|
||||
}
|
||||
|
||||
.menu h2 {
|
||||
background: linear-gradient(90deg, #ff00ff, #00ffff);
|
||||
-webkit-background-clip: text;
|
||||
color: transparent;
|
||||
text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
|
||||
}
|
||||
|
||||
.menu ul.guestbook {
|
||||
background-color: rgba(0, 0, 0, 0.58);
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
.menu ul.guestbook li {
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.menu ul.guestbook li span.date {
|
||||
color: #64886a;
|
||||
}
|
||||
|
||||
.menu ul.guestbook li span.author {
|
||||
color: #816488;
|
||||
}
|
||||
|
||||
.new-item-menu::after {
|
||||
color: rgb(255, 255, 255);
|
||||
border-color: red;
|
||||
background-color: rgb(233, 72, 72);
|
||||
box-shadow: red 0 0 15px;
|
||||
}
|
||||
|
||||
.badge {
|
||||
background-color: red;
|
||||
border-color: rgb(155, 14, 14);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.container h2 {
|
||||
background: linear-gradient(90deg, #ff00ff, #00ffff);
|
||||
-webkit-background-clip: text;
|
||||
color: transparent;
|
||||
text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
|
||||
}
|
||||
|
||||
.guestbook p span.author {
|
||||
color: #ae00ff;
|
||||
}
|
||||
|
||||
.post-card, .news, .guestbook p {
|
||||
background-color: #000000;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
.post-card-header, .news-header {
|
||||
border-color: #ffffff;
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
.post-card-header, .news-header h3 {
|
||||
text-shadow: #00ffff 0 0 10px;
|
||||
}
|
||||
|
||||
/* Contribution Page */
|
||||
|
||||
.games {
|
||||
background: url('/static/themes/default/img/gamepad2.png') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 30%;
|
||||
background-color: rgba(0, 0, 0, 0.58);
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.games:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.movies {
|
||||
background: url('/static/themes/default/img/television.png') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20%;
|
||||
background-color: rgba(0, 0, 0, 0.58);
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.movies:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.musics {
|
||||
background: url('/static/themes/default/img/music.png') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20%;
|
||||
background-color: rgba(0, 0, 0, 0.58);
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.musics:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.tech {
|
||||
background: url('/static/themes/default/img/computer.png') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20%;
|
||||
background-color: rgba(0, 0, 0, 0.58);
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.tech:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.category {
|
||||
background: url('') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20%;
|
||||
background-color: rgba(0, 0, 0, 0.58);
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.category:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.news_contrib {
|
||||
background: url('/static/themes/default/img/news_contrib.png') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20%;
|
||||
background-color: rgba(0, 0, 0, 0.58);
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.news_contrib:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
a {
|
||||
color: #00ffff;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #ff00ff;
|
||||
text-shadow: 0 0 10px #ff00ff;
|
||||
}
|
||||
|
||||
a.danger {
|
||||
color: #ce6666;
|
||||
}
|
||||
|
||||
.text-admin {
|
||||
color: #cf3c3c;
|
||||
}
|
||||
|
||||
.text-sadmin {
|
||||
color: #ff0000;
|
||||
text-shadow: #f700ff 0 0 15px;
|
||||
}
|
||||
|
||||
/* Forum */
|
||||
|
||||
.forum h3 {
|
||||
color: #9cdda7;
|
||||
text-shadow: #ff0000 0 0 10px;
|
||||
}
|
||||
|
||||
.forum .category-name {
|
||||
background-color: #111641;
|
||||
}
|
||||
|
||||
.forum .forum-row {
|
||||
background-color: #1e234e;
|
||||
}
|
||||
|
||||
.forum .forum-header {
|
||||
background-color: #262d6d;
|
||||
}
|
||||
|
||||
.stats_forum ul {
|
||||
background-color: #000000;
|
||||
color: #fff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
span.unread-badge {
|
||||
color: #00fc45;
|
||||
text-shadow: #00ff00 0 0 15px;
|
||||
}
|
||||
|
||||
.forum-description {
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
/* FORMULAIRES */
|
||||
|
||||
button, .btn-default {
|
||||
background: linear-gradient(45deg, #ff00ff, #00ffff);
|
||||
border: 2px solid #ffffff;
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
button:hover, .btn-default:hover {
|
||||
background: linear-gradient(45deg, #00ffff, #ff00ff);
|
||||
box-shadow: 0 0 15px #ff00ff;
|
||||
}
|
||||
|
||||
.btn-add {
|
||||
background-color: #003311;
|
||||
color: #fff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
.btn-add:hover {
|
||||
background-color: #00cf45;
|
||||
color: #fff;
|
||||
box-shadow: #00ff00 0 0 15px;
|
||||
}
|
||||
|
||||
.btn-danger {
|
||||
background-color: #330000;
|
||||
color: #fff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
.btn-danger:hover {
|
||||
background-color: #ff0000;
|
||||
color: #fff;
|
||||
box-shadow: #ff0000 0 0 15px;
|
||||
}
|
||||
|
||||
.btn-warning {
|
||||
background-color: #333300;
|
||||
color: #fff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
.btn-warning:hover {
|
||||
background-color: #ffae00;
|
||||
color: #9b3201;
|
||||
box-shadow: #ffa600 0 0 15px;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"], input[type="email"], select, textarea {
|
||||
background-color: #000000;
|
||||
color: #fff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
/* Pagination */
|
||||
.page-link {
|
||||
background-color: #000000;
|
||||
color: #fff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
li.active span {
|
||||
box-shadow: #00ff00 0 0 15px;
|
||||
}
|
||||
|
||||
li.disabled span {
|
||||
background-color: #494949;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.footer p {
|
||||
color: #ffffff;
|
||||
text-shadow: #ff0000 0 0 10px;
|
||||
}
|
||||
42
static/themes/80s/forms.css
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.btn, input[type="submit"], button {
|
||||
border: 2px solid;
|
||||
padding: 5px 10px;
|
||||
margin: 5px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
max-width: max-content;
|
||||
font-size: 0.8rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.btn-small {
|
||||
font-size: 0.5rem;
|
||||
}
|
||||
|
||||
.btn-large {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"], input[type="email"], select, textarea {
|
||||
padding: 5px;
|
||||
margin: 5px;
|
||||
width: 100%;
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"], input[type="email"], select {
|
||||
height: 35px;
|
||||
}
|
||||
|
||||
.form-inline {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
13
static/themes/80s/gallery.css
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
.gallery {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.gallery-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
max-width: 200px;
|
||||
}
|
||||
415
static/themes/80s/games.css
Normal file
|
|
@ -0,0 +1,415 @@
|
|||
.card-game {
|
||||
border: 2px solid #ff00ff;
|
||||
box-shadow: 0 0 15px #ff00ff;
|
||||
background: rgba(0, 0, 51, 0.8);
|
||||
margin: 15px;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.card-game:hover {
|
||||
transform: scale(1.02);
|
||||
box-shadow: 0 0 25px #00ffff;
|
||||
}
|
||||
|
||||
.card-game .header {
|
||||
border-bottom: 1px solid #fff;
|
||||
padding: 10px;
|
||||
background: linear-gradient(90deg, #ff00ff, #00ffff);
|
||||
color: #ffffff;
|
||||
text-shadow: 2px 2px 0px #000000;
|
||||
font-size: 1.1rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.card-game .header a {
|
||||
color: #d89de2;
|
||||
}
|
||||
|
||||
.card-game .body {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.card-game .footer {
|
||||
border-top: 1px solid #fff;
|
||||
background-color: rgba(0, 153, 255, 0.71);
|
||||
padding: 10px;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
ul.inline {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
ul.inline li {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin: 0 10px 0 0;
|
||||
}
|
||||
|
||||
.countdown {
|
||||
font-size: 20px;
|
||||
color: red;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* PETIT BAC */
|
||||
.game-bac-letter {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 60px;
|
||||
border: 3px solid #00ffff;
|
||||
background: #000033;
|
||||
box-shadow: 0 0 20px #00ffff;
|
||||
color: #00ffff;
|
||||
text-shadow: 0 0 10px #00ffff;
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
border-radius: 5px;
|
||||
margin: auto;
|
||||
padding: 10px;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
table.bac, table.bac th, table.bac tr, table.bac td {
|
||||
border: 1px solid #fff;
|
||||
}
|
||||
|
||||
table.bac {
|
||||
width: 90%;
|
||||
margin: auto;
|
||||
border-collapse: collapse;
|
||||
border: 2px solid #ff00ff;
|
||||
background: rgba(0, 0, 51, 0.8);
|
||||
}
|
||||
|
||||
table.bac th {
|
||||
background: linear-gradient(90deg, #ff00ff, #00ffff);
|
||||
color: #ffffff;
|
||||
text-shadow: 2px 2px 0px #000000;
|
||||
}
|
||||
|
||||
table.bac th, table.bac td {
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
table.bac td input[type="text"]{
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
font-family: 'Courier New', Courier, monospace;
|
||||
}
|
||||
|
||||
table.bac td input:focus {
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
table.quiz, table.quiz th, table.quiz tr, table.quiz td {
|
||||
border: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
table.quiz {
|
||||
width: 90%;
|
||||
margin: auto;
|
||||
border-collapse: collapse;
|
||||
background: #f9f9f9;
|
||||
}
|
||||
|
||||
table.quiz th {
|
||||
background: #e0e0e0;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
table.quiz th, table.quiz td {
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
||||
/* QUIZ */
|
||||
.quizes {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 20px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.quiz-item {
|
||||
flex: 1 1 300px;
|
||||
border: 1px solid #cccccc;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
background: #f9f9f9;
|
||||
padding: 15px;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.quiz-item:hover {
|
||||
transform: scale(1.02);
|
||||
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.quiz-item h3 {
|
||||
border-bottom: 1px solid #cccccc;
|
||||
padding-bottom: 10px;
|
||||
margin-top: 0;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.quiz-item h3 a {
|
||||
color: #0066cc;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.quiz-item h3 a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.quiz-item p {
|
||||
color: #333333;
|
||||
margin: 8px 0;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.quiz-item p:last-child {
|
||||
font-weight: bold;
|
||||
color: #666666;
|
||||
}
|
||||
|
||||
/* Quiz Styles */
|
||||
.quiz-container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 20px;
|
||||
font-family: 'Press Start 2P', 'Courier New', monospace;
|
||||
color: #00ffff;
|
||||
}
|
||||
|
||||
.quiz-title {
|
||||
color: #ff00ff;
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
font-size: 2rem;
|
||||
text-transform: uppercase;
|
||||
border-bottom: 2px solid #00ffff;
|
||||
text-shadow: 3px 3px #000;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.quiz-form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.quiz-question {
|
||||
background: rgba(0, 0, 51, 0.8);
|
||||
border: 2px solid #ff00ff;
|
||||
margin-bottom: 20px;
|
||||
box-shadow: 0 0 15px #ff00ff;
|
||||
}
|
||||
|
||||
.question-header {
|
||||
background: linear-gradient(90deg, #ff00ff, #00ffff);
|
||||
padding: 10px 15px;
|
||||
color: #fff;
|
||||
text-shadow: 2px 2px #000;
|
||||
border-bottom: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.question-content {
|
||||
padding: 20px;
|
||||
background: rgba(0, 0, 51, 0.9);
|
||||
}
|
||||
|
||||
.question-content h3 {
|
||||
color: #00ffff;
|
||||
margin-bottom: 15px;
|
||||
font-size: 1.2rem;
|
||||
text-shadow: 0 0 10px #00ffff;
|
||||
}
|
||||
|
||||
.choices-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.choice-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 10px;
|
||||
border: 1px solid #00ffff;
|
||||
border-radius: 3px;
|
||||
background: rgba(0, 255, 255, 0.1);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.choice-item:hover {
|
||||
background: rgba(0, 255, 255, 0.2);
|
||||
box-shadow: 0 0 10px #00ffff;
|
||||
transform: scale(1.02);
|
||||
}
|
||||
|
||||
.choice-item input[type="radio"] {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.choice-item label {
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
flex: 1;
|
||||
text-shadow: 0 0 5px #00ffff;
|
||||
}
|
||||
|
||||
.submit-container {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.submit-button {
|
||||
background: linear-gradient(45deg, #ff00ff, #00ffff);
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 15px 30px;
|
||||
font-size: 1.1rem;
|
||||
cursor: pointer;
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
text-shadow: 2px 2px #000;
|
||||
box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.submit-button:hover {
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 0 25px rgba(0, 255, 255, 0.7);
|
||||
}
|
||||
|
||||
/* Quiz Results Styles */
|
||||
.quiz-result-container {
|
||||
max-width: 800px;
|
||||
margin: 40px auto;
|
||||
padding: 20px;
|
||||
background: rgba(0, 0, 51, 0.8);
|
||||
border: 2px solid #ff00ff;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 0 20px #ff00ff;
|
||||
}
|
||||
|
||||
.quiz-result-card {
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.score-number {
|
||||
font-size: 3rem;
|
||||
font-weight: bold;
|
||||
color: #0066cc;
|
||||
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
text-shadow: 0 0 10px currentColor;
|
||||
}
|
||||
|
||||
.score-number.high {
|
||||
color: #00ff00;
|
||||
text-shadow: 0 0 15px #00ff00;
|
||||
}
|
||||
.score-number.medium {
|
||||
color: #ffff00;
|
||||
text-shadow: 0 0 15px #ffff00;
|
||||
}
|
||||
.score-number.low {
|
||||
color: #ff0000;
|
||||
text-shadow: 0 0 15px #ff0000;
|
||||
}
|
||||
|
||||
.score-message {
|
||||
color: #00ffff;
|
||||
font-size: 18px;
|
||||
margin: 15px 0;
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
text-shadow: 2px 2px #000;
|
||||
}
|
||||
|
||||
.quiz-score {
|
||||
float: right;
|
||||
background: #e0e0e0;
|
||||
color: #333333;
|
||||
font-size: 0.9rem;
|
||||
padding: 2px 8px;
|
||||
border-radius: 3px;
|
||||
border: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.progress-circle {
|
||||
position: relative;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
.circular-chart {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
transform: rotate(-90deg); /* Fait démarrer la progression à midi */
|
||||
}
|
||||
|
||||
.progress-path {
|
||||
stroke-linecap: round;
|
||||
transition: stroke-dasharray 0.5s ease;
|
||||
}
|
||||
|
||||
/* Couleurs pour les différents niveaux */
|
||||
.progress-path.high {
|
||||
stroke: #00ff00;
|
||||
filter: drop-shadow(0 0 5px #00ff00);
|
||||
}
|
||||
|
||||
.progress-path.medium {
|
||||
stroke: #ffff00;
|
||||
filter: drop-shadow(0 0 5px #ffff00);
|
||||
}
|
||||
|
||||
.progress-path.low {
|
||||
stroke: #ff0000;
|
||||
filter: drop-shadow(0 0 5px #ff0000);
|
||||
}
|
||||
|
||||
.percentage-text {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
font-size: 2rem;
|
||||
font-weight: bold;
|
||||
color: #00ffff;
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
text-shadow: 0 0 10px #00ffff;
|
||||
}
|
||||
|
||||
.progress-circle-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
.progress-circle {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.progress-path {
|
||||
transition: stroke-dasharray 0.3s ease;
|
||||
}
|
||||
|
||||
.high {
|
||||
stroke: #4caf50; /* Green */
|
||||
}
|
||||
|
||||
.medium {
|
||||
stroke: #ffeb3b; /* Yellow */
|
||||
}
|
||||
|
||||
.low {
|
||||
stroke: #f44336; /* Red */
|
||||
}
|
||||
59
static/themes/80s/grid.css
Executable file
|
|
@ -0,0 +1,59 @@
|
|||
/* Système de grille utilisant les flexbox */
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.row-xs {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
width: 80%;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.col {
|
||||
flex: 1;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
/* classes pour les largeurs des colonnes */
|
||||
|
||||
.col-1 { flex: 0 0 8.33%; }
|
||||
.col-2 { flex: 0 0 16.667%; }
|
||||
.col-3 { flex: 0 0 25%; }
|
||||
.col-4 { flex: 0 0 33.33%; }
|
||||
.col-5 { flex: 0 0 46.66%; }
|
||||
.col-6 { flex: 0 0 50%; }
|
||||
.col-7 { flex: 0 0 58.33%; }
|
||||
.col-8 { flex: 0 0 66.66%; }
|
||||
.col-9 { flex: 0 0 75%; }
|
||||
.col-10 { flex: 0 0 83.33%; }
|
||||
.col-11 { flex: 0 0 91.66%; }
|
||||
.col-12 { flex: 0 0 100%; }
|
||||
|
||||
/* Responsive */
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
.row {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.col {
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.menu ul.guestbook li span.date {
|
||||
color: #646788;
|
||||
}
|
||||
|
||||
.col-2 {
|
||||
order: 2; /* Placer après .col-7 */
|
||||
}
|
||||
|
||||
.col-7 {
|
||||
order: 1; /* Placer avant .col-1 */
|
||||
}
|
||||
}
|
||||
BIN
static/themes/80s/img/archer_sprite.png
Executable file
|
After Width: | Height: | Size: 75 KiB |
BIN
static/themes/80s/img/bg.png
Executable file
|
After Width: | Height: | Size: 123 B |
BIN
static/themes/80s/img/bg2.png
Executable file
|
After Width: | Height: | Size: 154 B |
BIN
static/themes/80s/img/bg3.png
Executable file
|
After Width: | Height: | Size: 161 B |
BIN
static/themes/80s/img/bg_container.png
Executable file
|
After Width: | Height: | Size: 101 B |
BIN
static/themes/80s/img/bg_galactique.png
Executable file
|
After Width: | Height: | Size: 34 KiB |
BIN
static/themes/80s/img/bg_galactique2.png
Executable file
|
After Width: | Height: | Size: 436 KiB |
BIN
static/themes/80s/img/computer.png
Executable file
|
After Width: | Height: | Size: 53 KiB |
BIN
static/themes/80s/img/gamepad.png
Executable file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
static/themes/80s/img/gamepad2.png
Executable file
|
After Width: | Height: | Size: 131 KiB |
BIN
static/themes/80s/img/mage_sprite.png
Executable file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
static/themes/80s/img/music.png
Executable file
|
After Width: | Height: | Size: 18 KiB |
BIN
static/themes/80s/img/news_contrib.png
Executable file
|
After Width: | Height: | Size: 197 KiB |
BIN
static/themes/80s/img/television.png
Executable file
|
After Width: | Height: | Size: 282 KiB |
65
static/themes/80s/pm.css
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
|
||||
|
||||
.table {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 90%;
|
||||
margin: 0 auto 10px auto;
|
||||
background: rgba(0, 0, 51, 0.7);
|
||||
border: 2px solid #ff00ff;
|
||||
box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
|
||||
padding: 10px;
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
}
|
||||
|
||||
.table .header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex: 1;
|
||||
border-bottom: 2px solid #00ffff;
|
||||
font-weight: 800;
|
||||
font-size: 0.8rem;
|
||||
color: #00ffff;
|
||||
text-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.table .body {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex: 1;
|
||||
border-bottom: 1px solid rgba(0, 255, 255, 0.3);
|
||||
color: #ffffff;
|
||||
text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
|
||||
padding: 8px 0;
|
||||
transition: background-color 0.3s ease;
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
.table .body:hover {
|
||||
background: rgba(255, 0, 255, 0.1);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.new-message {
|
||||
display: inline-block;
|
||||
color: #000000;
|
||||
background-color: #ff00ff;
|
||||
border: 1px solid #ff00ff;
|
||||
font-size: 0.5rem;
|
||||
margin-right: 10px;
|
||||
padding: 3px 6px;
|
||||
border-radius: 2px;
|
||||
text-shadow: none;
|
||||
box-shadow: 0 0 5px rgba(255, 0, 255, 0.8);
|
||||
animation: glow 1s ease-in-out infinite alternate;
|
||||
}
|
||||
|
||||
@keyframes glow {
|
||||
from {
|
||||
box-shadow: 0 0 5px rgba(255, 0, 255, 0.8);
|
||||
}
|
||||
to {
|
||||
box-shadow: 0 0 10px rgba(255, 0, 255, 1);
|
||||
}
|
||||
}
|
||||
35
static/themes/80s/post.css
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
.postmenu {
|
||||
border: 1px solid #fff;
|
||||
background-color: rgba(0, 0, 0, 0.8);
|
||||
width: 300px;
|
||||
margin: 10px;
|
||||
float: right;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.postmenu .header {
|
||||
background-color: rgb(28, 42, 78);
|
||||
padding: 5px;
|
||||
font-size: 1.2rem;
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
|
||||
.postmenu .body {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.postmenu .body ul {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.postmenu .body ul li {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.postmenu .body ul li:hover {
|
||||
margin-left: 10px;
|
||||
}
|
||||
329
static/themes/80s/profile.css
Normal file
|
|
@ -0,0 +1,329 @@
|
|||
:root {
|
||||
--neon-pink: #ff71ce;
|
||||
--neon-blue: #01cdfe;
|
||||
--neon-green: #05ffa1;
|
||||
--neon-purple: #b967ff;
|
||||
--dark-bg: #1a1a1a;
|
||||
}
|
||||
|
||||
.profile-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.profile-avatar {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
border-radius: 50%;
|
||||
object-fit: cover;
|
||||
border: 3px solid var(--neon-pink);
|
||||
transition: transform 0.3s ease;
|
||||
box-shadow: 0 0 15px var(--neon-pink);
|
||||
}
|
||||
|
||||
.profile-avatar:hover {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.profile-info {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.profile-name {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
color: var(--neon-pink);
|
||||
text-shadow: 0 0 5px var(--neon-pink);
|
||||
animation: neonPulse 2s infinite;
|
||||
}
|
||||
|
||||
.profile-username {
|
||||
color: var(--neon-blue);
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 1rem;
|
||||
text-shadow: 0 0 3px var(--neon-blue);
|
||||
}
|
||||
|
||||
.profile-stats {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
||||
gap: 1rem;
|
||||
margin: 2rem 0;
|
||||
padding: 1rem;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
text-align: center;
|
||||
padding: 1rem;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border: 1px solid var(--neon-green);
|
||||
box-shadow: 0 0 10px var(--neon-green);
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
color: var(--neon-green);
|
||||
display: block;
|
||||
text-shadow: 0 0 5px var(--neon-green);
|
||||
animation: neonPulse 2s infinite;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
color: var(--neon-blue);
|
||||
font-size: 0.9rem;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.profile-bio {
|
||||
line-height: 1.6;
|
||||
color: #ffffff;
|
||||
margin: 2rem 0;
|
||||
padding: 1rem;
|
||||
border-left: 4px solid var(--neon-purple);
|
||||
}
|
||||
|
||||
.profile-contact {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.contact-button {
|
||||
padding: 0.8rem 1.5rem;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
background: var(--neon-pink);
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
transition: background 0.3s ease;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
box-shadow: 0 0 10px var(--neon-pink);
|
||||
}
|
||||
|
||||
.contact-button:hover {
|
||||
background: var(--neon-purple);
|
||||
box-shadow: 0 0 15px var(--neon-purple);
|
||||
}
|
||||
|
||||
.profile-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 1fr;
|
||||
gap: 2rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.profile-main {
|
||||
background: linear-gradient(45deg, rgba(1, 205, 254, 0.1), rgba(255, 113, 206, 0.1));
|
||||
border: 2px solid var(--neon-blue);
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 0 15px var(--neon-blue);
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.profile-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.avatar-container {
|
||||
position: relative;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
.level-badge {
|
||||
position: absolute;
|
||||
background: var(--neon-green);
|
||||
color: white;
|
||||
padding: 0.5rem;
|
||||
border-radius: 50%;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 0.8rem;
|
||||
box-shadow: 0 0 10px var(--neon-green);
|
||||
animation: neonPulse 2s infinite;
|
||||
}
|
||||
|
||||
.level-number {
|
||||
font-size: 1rem;
|
||||
font-weight: bold;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.profile-info {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.username {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
color: #003366;
|
||||
}
|
||||
|
||||
.joined-date {
|
||||
color: #336699;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.profile-bio {
|
||||
margin-top: 2rem;
|
||||
padding-top: 2rem;
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
|
||||
.bio-content {
|
||||
line-height: 1.6;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
/* Colonne de droite */
|
||||
.profile-stats {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.stats-card, .achievements-card {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border-radius: 8px;
|
||||
padding: 1.5rem;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||
border: 2px solid var(--neon-blue);
|
||||
box-shadow: 0 0 15px rgba(1, 205, 254, 0.3);
|
||||
}
|
||||
|
||||
.stats-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 1rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
text-align: center;
|
||||
padding: 1rem;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 6px;
|
||||
border: 1px solid var(--neon-green);
|
||||
box-shadow: 0 0 10px var(--neon-green);
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
color: var(--neon-green);
|
||||
display: block;
|
||||
text-shadow: 0 0 5px var(--neon-green);
|
||||
animation: neonPulse 2s infinite;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: 0.9rem;
|
||||
color: var(--neon-blue);
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.achievements-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.badge-item {
|
||||
text-align: center;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
.badge-item img {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.badge-name {
|
||||
font-size: 0.8rem;
|
||||
color: var(--neon-pink);
|
||||
}
|
||||
|
||||
.profile-actions {
|
||||
margin-top: 2rem;
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: var(--neon-pink);
|
||||
color: white;
|
||||
box-shadow: 0 0 10px var(--neon-pink);
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background: var(--neon-blue);
|
||||
color: #003366;
|
||||
box-shadow: 0 0 10px var(--neon-blue);
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 768px) {
|
||||
.profile-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.stats-grid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
.inventory {
|
||||
background: #f0f0f04d;
|
||||
border-radius: 8px;
|
||||
padding: 1.5rem;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||
width: 98%;
|
||||
margin: 10px auto;
|
||||
}
|
||||
|
||||
.inventory-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
||||
gap: 15px;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.inventory-item {
|
||||
text-align: center;
|
||||
padding: 1rem;
|
||||
background: #ffffff78;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.item-quantity {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
color: #003366;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Ajout d'une animation de pulsation pour les éléments néon */
|
||||
@keyframes neonPulse {
|
||||
0% { opacity: 0.8; }
|
||||
50% { opacity: 1; }
|
||||
100% { opacity: 0.8; }
|
||||
}
|
||||
|
||||
.profile-name, .stat-value, .level-badge {
|
||||
animation: neonPulse 2s infinite;
|
||||
}
|
||||
|
||||
139
static/themes/80s/shop.css
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
a {
|
||||
text-decoration: none;
|
||||
color: #333;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.shop {
|
||||
padding: 20px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
flex-direction: row;
|
||||
background: linear-gradient(0deg, #000 0%, #1a1a1a 100%);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.shop::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: linear-gradient(transparent 0%, rgba(255,0,255,0.1) 100%);
|
||||
background-size: 100% 2px;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.card-shop {
|
||||
background: #1a1a1a;
|
||||
border: 2px solid #ff00ff;
|
||||
border-radius: 0;
|
||||
margin: 15px 0;
|
||||
padding: 15px;
|
||||
box-shadow: 0 0 10px #ff00ff, inset 0 0 5px #ff00ff;
|
||||
transition: all 0.3s ease;
|
||||
width: 250px;
|
||||
min-height: 380px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
margin-right: 15px;
|
||||
vertical-align: top;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.card-shop:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 0 20px #ff00ff, inset 0 0 10px #ff00ff;
|
||||
}
|
||||
|
||||
.card-shop img {
|
||||
max-width: 220px;
|
||||
margin-bottom: 10px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.card-shop .card-title {
|
||||
font-family: "Press Start 2P", cursive;
|
||||
color: #00ffff;
|
||||
text-shadow: 0 0 5px #00ffff;
|
||||
margin-bottom: 15px;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.card-shop .card-text {
|
||||
font-family: "VT323", monospace;
|
||||
color: #fff;
|
||||
margin-bottom: 10px;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
.card-shop .card-content {
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.card-shop .button-container {
|
||||
margin-top: auto;
|
||||
text-align: center;
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
||||
.btn-shop-primary {
|
||||
background: linear-gradient(to bottom right, #ff00ff, #00ffff);
|
||||
border: 2px solid #fff;
|
||||
border-radius: 0;
|
||||
padding: 8px 15px;
|
||||
color: #fff;
|
||||
font-family: "Press Start 2P", cursive;
|
||||
font-size: 0.8em;
|
||||
text-transform: uppercase;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
min-width: 120px;
|
||||
text-shadow: 0 0 5px rgba(255,255,255,0.5);
|
||||
box-shadow: 0 0 10px rgba(255,0,255,0.5);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.btn-shop-primary:hover {
|
||||
background: linear-gradient(to bottom right, #00ffff, #ff00ff);
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 0 20px rgba(255,0,255,0.8);
|
||||
}
|
||||
|
||||
.btn-shop-secondary {
|
||||
background: linear-gradient(to bottom right, #ff0099, #ff6600);
|
||||
border: 2px solid #fff;
|
||||
border-radius: 0;
|
||||
padding: 8px 15px;
|
||||
color: #fff;
|
||||
font-family: "Press Start 2P", cursive;
|
||||
font-size: 0.8em;
|
||||
text-shadow: 0 0 5px rgba(255,255,255,0.5);
|
||||
box-shadow: 0 0 10px rgba(255,102,0,0.5);
|
||||
}
|
||||
|
||||
.btn-shop-secondary:hover {
|
||||
background: linear-gradient(to bottom right, #ff6600, #ff0099);
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 0 20px rgba(255,102,0,0.8);
|
||||
}
|
||||
|
||||
.btn-shop-large {
|
||||
padding: 10px 20px;
|
||||
height: 65px;
|
||||
}
|
||||
|
||||
.fa-coins {
|
||||
color: #ffd700;
|
||||
text-shadow: 0 0 5px #ffd700;
|
||||
}
|
||||
317
static/themes/80s/structure.css
Executable file
|
|
@ -0,0 +1,317 @@
|
|||
/* Marges, paddings, dimensions, flexbox */
|
||||
*, html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
/* margin: 20px 0 20px 0; */
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
p, ul {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
p.date {
|
||||
font-size: 0.8em;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.notification {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.notification ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.notification ul li {
|
||||
padding: 10px;
|
||||
border: 2px solid;
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.container, .menu {
|
||||
padding: 0;
|
||||
border: 2px solid;
|
||||
margin-bottom: 10px;
|
||||
border-radius: 2px 2px 10px 10px;
|
||||
}
|
||||
|
||||
.container {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.menu h2 {
|
||||
border-bottom: 2px solid;
|
||||
padding: 10px;
|
||||
width: 100%;
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.container h2 {
|
||||
border-bottom: 2px solid;
|
||||
padding: 10px;
|
||||
margin: 0 0 20px;
|
||||
width: 100%;
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
|
||||
.menu ul {
|
||||
list-style-type: none;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.menu ul li {
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.menu ul.guestbook {
|
||||
max-height: 200px;
|
||||
overflow-y: auto;
|
||||
margin: 5px;
|
||||
border: 1px solid;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.new-item-menu::after {
|
||||
margin-left: 10px;
|
||||
padding: 2px;
|
||||
font-size: 0.6rem;
|
||||
border: 1px solid;
|
||||
content: "nouveau !";
|
||||
}
|
||||
|
||||
.badge {
|
||||
border: 1px solid;
|
||||
border-radius: 3px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
form.incol {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-wrap: wrap;
|
||||
justify-items: auto;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.container .header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.news, .post-card {
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
.guestbook p {
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
border: 2px solid;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.news-header, .post-card-header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
border: 1px solid;
|
||||
margin: 10px 10px -10px 10px;
|
||||
}
|
||||
|
||||
.contrib {
|
||||
border: 1px solid;
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.contrib a {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
|
||||
span.post-offline {
|
||||
color:red;
|
||||
font-weight:bold;
|
||||
margin:5px;
|
||||
background-image: url('../../img/icons/shield-red-cross.png');
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
span.post-online {
|
||||
color:green;
|
||||
font-weight:bold;
|
||||
margin:5px;
|
||||
background-image: url('../../img/icons/shield-green-v.png');
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
/* forum */
|
||||
.forum {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 0 0 10px 0;
|
||||
}
|
||||
|
||||
.forum .row {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.forum h3 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.forum-header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
border: 1px 1px 0 1px solid;
|
||||
margin: 10px 10px -10px 10px;
|
||||
}
|
||||
|
||||
.forum-column, .forum-column-detail {
|
||||
flex: 1;
|
||||
flex-direction: column;
|
||||
border: 1px solid;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.forum-column:nth-child(1) {
|
||||
flex: 2;
|
||||
}
|
||||
|
||||
.forum-column:nth-child(2), .forum-column:nth-child(3) {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.forum-column-detail:nth-child(1) {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.forum-column-detail:nth-child(2) {
|
||||
flex: 4;
|
||||
}
|
||||
|
||||
.forum-column-detail ul {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.forum-body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border: 0 1px 1px 1px solid;
|
||||
margin: 10px 10px -10px 10px;
|
||||
}
|
||||
|
||||
.forum-body img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.forum-row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
border: 0 1px 0 1px solid;
|
||||
}
|
||||
|
||||
.stats_forum {
|
||||
margin: 20px 0 10px 0;
|
||||
border-top: 2px solid
|
||||
}
|
||||
|
||||
.stats_forum ul {
|
||||
list-style-type: none;
|
||||
border: 1px solid;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.stats_forum ul li {
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
ul.breadcrumbs {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
font-size: 0.6rem;
|
||||
list-style-type: none;
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
ul.breadcrumbs li {
|
||||
margin: 0 5px 0 5px;
|
||||
}
|
||||
|
||||
ul.breadcrumbs li a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Pagination */
|
||||
ul.pagination {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
list-style-type: none;
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
ul.pagination li.page-item {
|
||||
margin: 0 5px 0 5px;
|
||||
}
|
||||
|
||||
ul.pagination li.page-item a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.page-link {
|
||||
padding: 5px 10px;
|
||||
border: 2px solid;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
max-width: max-content;
|
||||
font-size: 0.8rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
li.disabled {
|
||||
pointer-events: none;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.warning-announce-not-mobile-compatible {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
.warning-announce-not-mobile-compatible {
|
||||
display: block;
|
||||
position: absolute;
|
||||
border: 1px solid orange;
|
||||
background-color: rgb(255, 215, 140);
|
||||
padding: 10px;
|
||||
margin: 10px;
|
||||
color: rgb(152, 120, 60);
|
||||
text-shadow: none;
|
||||
z-index: 1000;
|
||||
}
|
||||
}
|
||||
42
static/themes/80s/typo.css
Executable file
|
|
@ -0,0 +1,42 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=VT323&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
|
||||
|
||||
body {
|
||||
font-family: 'VT323', monospace;
|
||||
font-size: 18px;
|
||||
color: #ffffff;
|
||||
text-shadow: 2px 2px 0px #ff00ff;
|
||||
}
|
||||
|
||||
h1, h2, .breadcrumbs, .btn, input, select, button, .notification, .page-link, .guestbook p {
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.btn, button {
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
text-transform: uppercase;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.menu h2 {
|
||||
font-family: 'VT323', cursive;
|
||||
}
|
||||
|
||||
.container {
|
||||
font-family: "Chakra Petch", sans-serif;
|
||||
}
|
||||
|
||||
.menu ul.guestbook li {
|
||||
font-size: 1rem;
|
||||
}
|
||||
247
static/themes/border-avatars.css
Normal file
|
|
@ -0,0 +1,247 @@
|
|||
.cadre-retro-80s {
|
||||
display: inline-block;
|
||||
margin: 5px;
|
||||
position: relative;
|
||||
border: 4px solid transparent;
|
||||
box-shadow:
|
||||
0 0 15px rgba(255, 0, 255, 0.6),
|
||||
0 0 25px rgba(0, 255, 255, 0.4);
|
||||
background:
|
||||
linear-gradient(#1a1a1a, #1a1a1a) padding-box,
|
||||
linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff) border-box;
|
||||
padding: 2px;
|
||||
transform: perspective(500px) rotateX(5deg);
|
||||
animation:
|
||||
pulseFrame 1.5s ease-in-out infinite,
|
||||
rotateFrame 4s linear infinite;
|
||||
}
|
||||
|
||||
.cadre-retro-80s::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -2px;
|
||||
left: -2px;
|
||||
right: -2px;
|
||||
bottom: -2px;
|
||||
background: linear-gradient(45deg, #ff00ff, #00ffff);
|
||||
background-size: 200% 100%;
|
||||
z-index: -1;
|
||||
animation:
|
||||
neonGlow 2s infinite linear,
|
||||
gradientMove 4s linear infinite;
|
||||
filter: blur(8px);
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
@keyframes neonGlow {
|
||||
0% { opacity: 0.5; }
|
||||
50% { opacity: 1; }
|
||||
100% { opacity: 0.5; }
|
||||
}
|
||||
|
||||
@keyframes pulseFrame {
|
||||
0% { transform: perspective(500px) rotateX(5deg) scale(1); }
|
||||
50% { transform: perspective(500px) rotateX(5deg) scale(1.05); }
|
||||
100% { transform: perspective(500px) rotateX(5deg) scale(1); }
|
||||
}
|
||||
|
||||
@keyframes gradientMove {
|
||||
0% { background-position: -100% 50%; }
|
||||
100% { background-position: 200% 50%; }
|
||||
}
|
||||
|
||||
@keyframes rotateFrame {
|
||||
0% { transform: perspective(500px) rotateX(5deg) rotateY(0deg); }
|
||||
50% { transform: perspective(500px) rotateX(-5deg) rotateY(5deg); }
|
||||
100% { transform: perspective(500px) rotateX(5deg) rotateY(0deg); }
|
||||
}
|
||||
|
||||
/* TV RETRO */
|
||||
.cadre-retro-tv {
|
||||
position: relative;
|
||||
border: 20px solid #2c2c2c;
|
||||
border-radius: 15px;
|
||||
background: #000;
|
||||
padding: 5px;
|
||||
box-shadow:
|
||||
inset 0 0 10px rgba(255, 255, 255, 0.3),
|
||||
0 0 15px rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
|
||||
.cadre-retro-tv::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: linear-gradient(
|
||||
to bottom,
|
||||
transparent 50%,
|
||||
rgba(0, 0, 0, 0.3) 50%
|
||||
);
|
||||
background-size: 100% 4px;
|
||||
animation: scanlines 1s linear infinite;
|
||||
pointer-events: none;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.cadre-retro-tv::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: radial-gradient(
|
||||
circle at center,
|
||||
transparent 60%,
|
||||
rgba(0, 0, 0, 0.6) 100%
|
||||
);
|
||||
pointer-events: none;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
@keyframes scanlines {
|
||||
0% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(4px);
|
||||
}
|
||||
}
|
||||
|
||||
/* GAMEBOY RETRO */
|
||||
.cadre-retro-gameboy {
|
||||
position: relative;
|
||||
width: fit-content;
|
||||
padding: 25px 25px 65px 25px;
|
||||
margin: 10px 10px 20px 10px;
|
||||
background: #8b8b8b;
|
||||
border-radius: 10px 10px 30px 10px;
|
||||
box-shadow:
|
||||
-5px -5px 0 #9b9b9b,
|
||||
5px 5px 0 #737373;
|
||||
}
|
||||
|
||||
.cadre-retro-gameboy::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 12px;
|
||||
left: 12px;
|
||||
right: 12px;
|
||||
height: calc(100% - 90px);
|
||||
background: transparent;
|
||||
border-radius: 3px;
|
||||
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.cadre-retro-gameboy::after {
|
||||
content: '🔴';
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
left: 15px;
|
||||
font-size: 0.2rem;
|
||||
color: #cc0000;
|
||||
}
|
||||
|
||||
.cadre-retro-gameboy img {
|
||||
position: relative;
|
||||
top: -11px;
|
||||
z-index: 1;
|
||||
filter: sepia(20%) hue-rotate(60deg) saturate(0.6) contrast(1.2);
|
||||
}
|
||||
|
||||
.cadre-retro-gameboy .controls {
|
||||
position: absolute;
|
||||
bottom: 15px;
|
||||
left: 20px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: #8b8b8b;
|
||||
clip-path: polygon(
|
||||
35% 0%, 65% 0%,
|
||||
100% 35%, 100% 65%,
|
||||
65% 100%, 35% 100%,
|
||||
0% 65%, 0% 35%
|
||||
);
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.cadre-retro-gameboy .controls::after {
|
||||
content: '+';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
color: #2a2a2a;
|
||||
font-size: 3rem;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.cadre-retro-gameboy .buttons {
|
||||
position: absolute;
|
||||
bottom: 25px;
|
||||
right: 25px;
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.cadre-retro-gameboy .buttons::before {
|
||||
content: 'B';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 15px;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
background: #373737;
|
||||
border-radius: 50%;
|
||||
color: #8b8b8b;
|
||||
font-size: 10px;
|
||||
line-height: 15px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.cadre-retro-gameboy .buttons::after {
|
||||
content: 'A';
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
right: -10px;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
background: #373737;
|
||||
border-radius: 50%;
|
||||
color: #8b8b8b;
|
||||
font-size: 10px;
|
||||
line-height: 15px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Ajout des boutons start/select */
|
||||
.cadre-retro-gameboy .start-select {
|
||||
position: absolute;
|
||||
bottom: 60px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
display: flex;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.cadre-retro-gameboy .start-select::before,
|
||||
.cadre-retro-gameboy .start-select::after {
|
||||
content: '';
|
||||
width: 25px;
|
||||
height: 8px;
|
||||
background: #373737;
|
||||
border-radius: 4px;
|
||||
transform: rotate(-25deg);
|
||||
}
|
||||
|
||||
.cadre-retro-gameboy .start-select::before {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.cadre-retro-gameboy .start-select::after {
|
||||
margin-left: 5px;
|
||||
}
|
||||
493
static/themes/decoration-username.css
Normal file
|
|
@ -0,0 +1,493 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
|
||||
|
||||
.sparkling-username {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
.sparkling-username::before, .sparkling-username::after {
|
||||
content: '✨';
|
||||
position: absolute;
|
||||
font-size: 1rem;
|
||||
color: #ff0;
|
||||
animation: sparkle 2s infinite;
|
||||
}
|
||||
|
||||
.sparkling-username::before {
|
||||
top: -10px;
|
||||
left: -10px;
|
||||
animation-delay: 0s;
|
||||
}
|
||||
|
||||
.sparkling-username::after {
|
||||
bottom: -10px;
|
||||
right: -10px;
|
||||
animation-delay: 1s;
|
||||
}
|
||||
|
||||
@keyframes sparkle {
|
||||
0%, 100% {
|
||||
opacity: 0;
|
||||
transform: scale(0.5) rotate(0deg);
|
||||
}
|
||||
50% {
|
||||
opacity: 1;
|
||||
transform: scale(1.5) rotate(45deg);
|
||||
}
|
||||
}
|
||||
|
||||
.retro-wave-username {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
font-family: 'Arial Black', sans-serif;
|
||||
font-weight: bold;
|
||||
font-size: 1.2em;
|
||||
background: linear-gradient(
|
||||
45deg,
|
||||
#ff00ff,
|
||||
#00ffff,
|
||||
#ff00ff
|
||||
);
|
||||
background-size: 200% 100%;
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
color: transparent;
|
||||
text-shadow:
|
||||
2px 2px 0px rgba(255, 0, 255, 0.2),
|
||||
4px 4px 0px rgba(0, 255, 255, 0.2);
|
||||
animation: waveText 2s ease-in-out infinite,
|
||||
gradientFlow 3s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes waveText {
|
||||
0%, 100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-5px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes gradientFlow {
|
||||
0% {
|
||||
background-position: 0% 50%;
|
||||
}
|
||||
100% {
|
||||
background-position: 200% 50%;
|
||||
}
|
||||
}
|
||||
|
||||
/* PIXEL RETRO */
|
||||
.pixel-retro-username {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
color: #fff;
|
||||
text-shadow: 2px 2px 0 #000;
|
||||
padding: 5px;
|
||||
animation: pixelBounce 0.5s infinite alternate;
|
||||
}
|
||||
|
||||
.pixel-retro-username::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -2px;
|
||||
left: -2px;
|
||||
right: -2px;
|
||||
bottom: -2px;
|
||||
background: linear-gradient(
|
||||
45deg,
|
||||
#f00 25%,
|
||||
transparent 25%,
|
||||
transparent 75%,
|
||||
#f00 75%
|
||||
);
|
||||
background-size: 4px 4px;
|
||||
z-index: -1;
|
||||
animation: pixelBorder 0.5s steps(4) infinite;
|
||||
}
|
||||
|
||||
@keyframes pixelBounce {
|
||||
from {
|
||||
transform: translateY(0);
|
||||
}
|
||||
to {
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes pixelBorder {
|
||||
0% {
|
||||
background-position: 0 0;
|
||||
}
|
||||
100% {
|
||||
background-position: 4px 4px;
|
||||
}
|
||||
}
|
||||
|
||||
/* NEON CYBER */
|
||||
|
||||
.neon-cyber-username {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
font-family: 'Orbitron', sans-serif;
|
||||
color: #ff00ff;
|
||||
filter: blur(1px);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
transform-style: preserve-3d;
|
||||
animation: neonPulse 2s ease-in-out infinite alternate,
|
||||
floatEffect 4s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.neon-cyber-username::before {
|
||||
content: attr(data-text);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: -1;
|
||||
color: #ff00ff;
|
||||
filter: blur(12px);
|
||||
animation: neonFlicker 3s infinite;
|
||||
}
|
||||
|
||||
.neon-cyber-username::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -5px;
|
||||
left: -5px;
|
||||
right: -5px;
|
||||
bottom: -5px;
|
||||
border: 2px solid #0ff;
|
||||
border-radius: 5px;
|
||||
background: radial-gradient(circle at 50% 50%,
|
||||
rgba(0, 255, 255, 0.2) 0%,
|
||||
transparent 50%);
|
||||
filter: blur(5px);
|
||||
animation: borderGlow 3s infinite,
|
||||
particleEffect 4s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes neonPulse {
|
||||
0% {
|
||||
text-shadow:
|
||||
0 0 5px #fff,
|
||||
0 0 10px #fff,
|
||||
0 0 15px #0ff,
|
||||
0 0 20px #0ff;
|
||||
}
|
||||
100% {
|
||||
text-shadow:
|
||||
0 0 2px #fff,
|
||||
0 0 5px #fff,
|
||||
0 0 10px #0ff,
|
||||
0 0 15px #0ff;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes neonFlicker {
|
||||
0%, 100% {
|
||||
opacity: 1;
|
||||
}
|
||||
41%, 44% {
|
||||
opacity: 0.8;
|
||||
}
|
||||
42%, 43% {
|
||||
opacity: 0.5;
|
||||
}
|
||||
78%, 89% {
|
||||
opacity: 1;
|
||||
}
|
||||
79%, 88% {
|
||||
opacity: 0.6;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes borderGlow {
|
||||
0%, 100% {
|
||||
box-shadow:
|
||||
0 0 5px #0ff,
|
||||
inset 0 0 5px #0ff;
|
||||
}
|
||||
50% {
|
||||
box-shadow:
|
||||
0 0 20px #0ff,
|
||||
inset 0 0 10px #0ff;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes floatEffect {
|
||||
0%, 100% {
|
||||
transform: translateY(0) translateZ(0);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-3px) translateZ(10px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes glitchShift {
|
||||
0%, 100% {
|
||||
clip-path: inset(0 0 0 0);
|
||||
}
|
||||
10% {
|
||||
clip-path: inset(10% 0 80% 0);
|
||||
transform: translate(-2px);
|
||||
}
|
||||
15% {
|
||||
clip-path: inset(80% 0 10% 0);
|
||||
transform: translate(2px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes glitchOffset {
|
||||
0%, 100% {
|
||||
transform: translate(0);
|
||||
}
|
||||
10% {
|
||||
transform: translate(-3px, 2px);
|
||||
}
|
||||
15% {
|
||||
transform: translate(3px, -2px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes particleEffect {
|
||||
0% {
|
||||
background-size: 100% 100%;
|
||||
background-position: 0% 0%;
|
||||
}
|
||||
50% {
|
||||
background-size: 200% 200%;
|
||||
background-position: 100% 100%;
|
||||
}
|
||||
100% {
|
||||
background-size: 100% 100%;
|
||||
background-position: 0% 0%;
|
||||
}
|
||||
}
|
||||
|
||||
/* LIGHTNING STYLE */
|
||||
.lightning-username {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
font-family: 'Orbitron', sans-serif;
|
||||
font-weight: 900;
|
||||
color: #FFD700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
padding: 0 10px;
|
||||
animation: powerUp 2s infinite;
|
||||
}
|
||||
|
||||
.lightning-username::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 120%;
|
||||
height: 120%;
|
||||
background: radial-gradient(
|
||||
circle,
|
||||
rgba(255, 215, 0, 0.6) 0%,
|
||||
rgba(255, 140, 0, 0.4) 40%,
|
||||
transparent 70%
|
||||
);
|
||||
animation: aura 1s ease-in-out infinite;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.lightning-username::after {
|
||||
content: '⚡';
|
||||
position: absolute;
|
||||
font-size: 1.2em;
|
||||
color: #FFA500;
|
||||
animation: lightning 0.5s infinite;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
@keyframes powerUp {
|
||||
0%, 100% {
|
||||
text-shadow:
|
||||
0 0 5px #FFD700,
|
||||
0 0 10px #FFA500,
|
||||
0 0 20px #FF8C00;
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
text-shadow:
|
||||
0 0 10px #FFD700,
|
||||
0 0 20px #FFA500,
|
||||
0 0 40px #FF8C00;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes aura {
|
||||
0%, 100% {
|
||||
transform: translate(-50%, -50%) scale(1);
|
||||
opacity: 0.6;
|
||||
}
|
||||
50% {
|
||||
transform: translate(-50%, -50%) scale(1.1);
|
||||
opacity: 0.8;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes lightning {
|
||||
0%, 100% {
|
||||
left: -15px;
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
50% {
|
||||
left: calc(100% + 5px);
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
}
|
||||
|
||||
/* DRAGON BALL Z KI STYLE */
|
||||
.dbz-ki-username {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
font-family: 'Orbitron', sans-serif;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
text-shadow: 0 0 10px #4444ff;
|
||||
padding: 0 10px;
|
||||
animation: powerLevel 2s infinite;
|
||||
}
|
||||
|
||||
.dbz-ki-username::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: linear-gradient(90deg,
|
||||
transparent 0%,
|
||||
rgba(68, 138, 255, 0.8) 50%,
|
||||
transparent 100%
|
||||
);
|
||||
filter: blur(4px);
|
||||
animation: kiFlow 1.5s infinite;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.dbz-ki-username::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -10px;
|
||||
left: -10px;
|
||||
right: -10px;
|
||||
bottom: -10px;
|
||||
background: radial-gradient(
|
||||
circle,
|
||||
rgba(0, 149, 255, 0.3) 0%,
|
||||
rgba(0, 98, 255, 0.1) 50%,
|
||||
transparent 70%
|
||||
);
|
||||
animation: kiAura 2s infinite;
|
||||
z-index: -2;
|
||||
}
|
||||
|
||||
@keyframes powerLevel {
|
||||
0%, 100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes kiFlow {
|
||||
0% {
|
||||
transform: translateX(-100%) skewX(-20deg);
|
||||
opacity: 0;
|
||||
}
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
transform: translateX(100%) skewX(-20deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes kiAura {
|
||||
0%, 100% {
|
||||
transform: scale(1);
|
||||
opacity: 0.6;
|
||||
}
|
||||
50% {
|
||||
transform: scale(1.1);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
/* ELECTRIC SSJ2 EFFECT */
|
||||
.ssj2-electric {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.ssj2-electric::before,
|
||||
.ssj2-electric::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: -10px;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.ssj2-electric::before {
|
||||
background:
|
||||
repeating-linear-gradient(
|
||||
90deg,
|
||||
transparent,
|
||||
transparent 15px,
|
||||
#4444ff 15px,
|
||||
transparent 16px
|
||||
),
|
||||
repeating-linear-gradient(
|
||||
0deg,
|
||||
transparent,
|
||||
transparent 15px,
|
||||
#ffffff 15px,
|
||||
transparent 16px
|
||||
);
|
||||
filter: blur(1px);
|
||||
opacity: 0;
|
||||
animation: electricFlash 0.2s steps(1) infinite;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.ssj2-electric::after {
|
||||
background:
|
||||
repeating-linear-gradient(
|
||||
45deg,
|
||||
transparent,
|
||||
transparent 10px,
|
||||
#4444ff 10px,
|
||||
transparent 11px
|
||||
),
|
||||
repeating-linear-gradient(
|
||||
-45deg,
|
||||
transparent,
|
||||
transparent 10px,
|
||||
#ffffff 10px,
|
||||
transparent 11px
|
||||
);
|
||||
filter: blur(0.5px);
|
||||
opacity: 0;
|
||||
animation: electricFlash 0.2s steps(1) infinite 0.1s;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
@keyframes electricFlash {
|
||||
0%, 100% { opacity: 0; transform: translate(0, 0) rotate(0deg); }
|
||||
25% { opacity: 0.4; transform: translate(1px, -1px) rotate(0.5deg); }
|
||||
50% { opacity: 0.7; transform: translate(-1px, 1px) rotate(-0.5deg); }
|
||||
75% { opacity: 0.4; transform: translate(1px, 1px) rotate(0.5deg); }
|
||||
}
|
||||
|
||||
|
||||
127
static/themes/default/banner.css
Executable file
|
|
@ -0,0 +1,127 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=Piedra&family=Press+Start+2P&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
|
||||
|
||||
.banner {
|
||||
width: 100%;
|
||||
min-width: 1000px;
|
||||
height: 140px;
|
||||
background: linear-gradient(to right,
|
||||
#000000 0%,
|
||||
#000000 5%,
|
||||
transparent 5%,
|
||||
transparent 95%,
|
||||
#000000 95%,
|
||||
#000000 100%
|
||||
);
|
||||
border-top: 3px solid #fff;
|
||||
border-bottom: 3px solid #fff;
|
||||
/* box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2); */
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin: auto;
|
||||
}
|
||||
.galaxy-background {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 5%;
|
||||
width: 90%;
|
||||
height: 100%;
|
||||
background: linear-gradient(to right,
|
||||
rgba(0, 0, 0, 1) 0%,
|
||||
rgba(0, 0, 0, 0.7) 10%,
|
||||
rgba(0, 0, 0, 0) 20%,
|
||||
rgba(0, 0, 0, 0) 80%,
|
||||
rgba(0, 0, 0, 0.7) 90%,
|
||||
rgba(0, 0, 0, 1) 100%
|
||||
), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect width="100%" height="100%" fill="rgba(0,0,30,0.8)"/><g fill="white"><circle cx="20" cy="30" r="1"/><circle cx="40" cy="70" r="1"/><circle cx="50" cy="160" r="1"/><circle cx="90" cy="40" r="1"/><circle cx="130" cy="80" r="1"/><circle cx="160" cy="120" r="1"/></g></svg>');
|
||||
background-repeat: repeat;
|
||||
background-size: 100% 100%, 200px 200px;
|
||||
animation: galaxy-animation 60s linear infinite;
|
||||
}
|
||||
|
||||
.big-shooting-star {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
background: white;
|
||||
box-shadow: 0 0 10px white, 0 0 20px white, 0 0 30px white;
|
||||
border-radius: 50%;
|
||||
opacity: 0;
|
||||
animation: big-shooting-star linear infinite;
|
||||
}
|
||||
|
||||
@keyframes big-shooting-star {
|
||||
0% {
|
||||
transform: translate(0, 0);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
transform: translate(var(--endX), var(--endY));
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes galaxy-animation {
|
||||
from {
|
||||
background-position: 0 0, 0 0;
|
||||
}
|
||||
to {
|
||||
background-position: 0 0, 0 -200px;
|
||||
}
|
||||
}
|
||||
.banner-text {
|
||||
font-family: 'Piedra', cursive;
|
||||
word-spacing: 10px;
|
||||
font-size: 80px;
|
||||
color: #c0c0c0;
|
||||
text-shadow:
|
||||
2px 2px 4px rgba(255, 255, 255, 0.5),
|
||||
-2px -2px 4px rgba(0, 0, 0, 0.5);
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
}
|
||||
.banner-text span {
|
||||
animation: twinkle 3s ease-in-out infinite;
|
||||
animation-delay: calc(var(--char-index) * 0.1s);
|
||||
}
|
||||
@keyframes twinkle {
|
||||
0%, 100% {
|
||||
opacity: 1;
|
||||
text-shadow:
|
||||
2px 2px 4px rgba(255, 255, 255, 0.5),
|
||||
-2px -2px 4px rgba(0, 0, 0, 0.5),
|
||||
0 0 10px rgba(255, 255, 255, 0.3);
|
||||
}
|
||||
50% {
|
||||
opacity: 0.8;
|
||||
text-shadow:
|
||||
1px 1px 2px rgba(255, 255, 255, 0.3),
|
||||
-1px -1px 2px rgba(0, 0, 0, 0.3),
|
||||
0 0 5px rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
}
|
||||
|
||||
.slogan {
|
||||
color: #2cdf26;
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
white-space: nowrap;
|
||||
animation: slide 30s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes slide {
|
||||
0% {
|
||||
transform: translateX(100%);
|
||||
}
|
||||
50% {
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
100% {
|
||||
transform: translateX(100%);
|
||||
}
|
||||
}
|
||||
100
static/themes/default/bbcode.css
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
|
||||
.bbcode-bar, .bbcode-bar ul {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.bbcode-bar {
|
||||
flex-direction: column;
|
||||
background-color: black;
|
||||
border: 1px solid #fff;
|
||||
margin: 0 -5px -5px 5px;
|
||||
width: 99%;
|
||||
}
|
||||
|
||||
.bbcode-bar ul {
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.bbcode-bar li {
|
||||
margin: 0 10px 5px 10px;
|
||||
font-family: 'Press Start 2P';
|
||||
}
|
||||
|
||||
.bbcode-bar button {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.draggable {
|
||||
width: 600px;
|
||||
height: 300px;
|
||||
overflow: auto;
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
background-color: rgba(0,0,0, 0.8);
|
||||
border: 2px solid #ccc;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
||||
z-index: 1000;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.draggable .header {
|
||||
position: fixed;
|
||||
width: 596px;
|
||||
background-color: #082039;
|
||||
color: #fff;
|
||||
padding: 5px;
|
||||
cursor: move;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.draggable .close-button {
|
||||
color: white;
|
||||
font-size: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.draggable .content {
|
||||
padding: 15px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
ul.bbcode-list {
|
||||
margin-left: 50px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
h1.h1-bbcode {
|
||||
font-family: "Roboto";
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
h2.h2-bbcode {
|
||||
font-family: "Roboto";
|
||||
font-size: 1.5rem;
|
||||
background-color: rgba(0, 0, 0, 0.0);
|
||||
border: none;
|
||||
}
|
||||
|
||||
h3.h3-bbcode {
|
||||
font-family: "Roboto";
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
fieldset.quote-bbcode {
|
||||
padding: 10px;
|
||||
border: 1px solid #fff;
|
||||
background-color: rgba(0,0,0, 0.4);
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
fieldset.quote-bbcode legend {
|
||||
border: 1px solid #fff;
|
||||
padding: 5px;
|
||||
background-color: black;
|
||||
}
|
||||
312
static/themes/default/colors.css
Executable file
|
|
@ -0,0 +1,312 @@
|
|||
html, body {
|
||||
background: url('/static/themes/default/img/bg_galactique2.png');
|
||||
}
|
||||
|
||||
.notification li.success {
|
||||
border-color: #ffffff;
|
||||
color: #086123;
|
||||
background-color: #00fc45;
|
||||
box-shadow: #00ff00 0 0 15px;
|
||||
}
|
||||
|
||||
.notification li.error {
|
||||
border-color: #ffffff;
|
||||
color: #4b0c0c;
|
||||
background-color: #e00e0e;
|
||||
box-shadow: #ff0000 0 0 15px;
|
||||
}
|
||||
|
||||
.container, .menu {
|
||||
background-color: #262d6d;
|
||||
color: #e4e4dc;
|
||||
border-color: #787e2f;
|
||||
}
|
||||
|
||||
.container {
|
||||
background: url('/static/themes/default/img/bg2.png');
|
||||
}
|
||||
|
||||
.menu {
|
||||
background: url('/static/themes/default/img/archer_sprite.png') bottom right;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 45%;
|
||||
background-color: #4750a3;
|
||||
}
|
||||
|
||||
.menu h2 {
|
||||
background-image: url('/static/themes/default/img/mage_sprite.png');
|
||||
background-repeat: no-repeat;
|
||||
background-color: #341f32;
|
||||
}
|
||||
|
||||
.menu ul.guestbook {
|
||||
background-color: rgba(0, 0, 0, 0.58);
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
.menu ul.guestbook li span.date {
|
||||
color: #64886a;
|
||||
}
|
||||
|
||||
.menu ul.guestbook li span.author {
|
||||
color: #816488;
|
||||
}
|
||||
|
||||
.new-item-menu::after {
|
||||
color: rgb(255, 255, 255);
|
||||
border-color: red;
|
||||
background-color: rgb(233, 72, 72);
|
||||
box-shadow: red 0 0 15px;
|
||||
}
|
||||
|
||||
.badge {
|
||||
background-color: red;
|
||||
border-color: rgb(155, 14, 14);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.container h2 {
|
||||
/* background-image: url('/static/themes/default/img/mage_sprite.png'); */
|
||||
background-repeat: no-repeat;
|
||||
background-color: #1f2034;
|
||||
}
|
||||
|
||||
.guestbook p span.author {
|
||||
color: #ae00ff;
|
||||
}
|
||||
|
||||
.post-card, .news, .guestbook p {
|
||||
background-color: #000000;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
.post-card-header, .news-header {
|
||||
border-color: #ffffff;
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
.post-card-header, .news-header h3 {
|
||||
text-shadow: #00ffff 0 0 10px;
|
||||
}
|
||||
|
||||
/* Contribution Page */
|
||||
|
||||
.games {
|
||||
background: url('/static/themes/default/img/gamepad2.png') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 30%;
|
||||
background-color: rgba(0, 0, 0, 0.58);
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.games:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.movies {
|
||||
background: url('/static/themes/default/img/television.png') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20%;
|
||||
background-color: rgba(0, 0, 0, 0.58);
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.movies:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.musics {
|
||||
background: url('/static/themes/default/img/music.png') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20%;
|
||||
background-color: rgba(0, 0, 0, 0.58);
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.musics:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.tech {
|
||||
background: url('/static/themes/default/img/computer.png') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20%;
|
||||
background-color: rgba(0, 0, 0, 0.58);
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.tech:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.category {
|
||||
background: url('') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20%;
|
||||
background-color: rgba(0, 0, 0, 0.58);
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.category:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.news_contrib {
|
||||
background: url('/static/themes/default/img/news_contrib.png') right;
|
||||
background-position: calc(100% + 100px);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20%;
|
||||
background-color: rgba(0, 0, 0, 0.58);
|
||||
border-color: #ffffff;
|
||||
transition: background-position 0.8s;
|
||||
}
|
||||
|
||||
.news_contrib:hover {
|
||||
background-position: calc(100% - 20px);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
a {
|
||||
color: #00d9ff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #df73df;
|
||||
text-shadow: #00ff00 0 0 10px;
|
||||
}
|
||||
|
||||
a.danger {
|
||||
color: #ce6666;
|
||||
}
|
||||
|
||||
.text-admin {
|
||||
color: #cf3c3c;
|
||||
}
|
||||
|
||||
.text-sadmin {
|
||||
color: #ff0000;
|
||||
text-shadow: #f700ff 0 0 15px;
|
||||
}
|
||||
|
||||
/* Forum */
|
||||
|
||||
.forum h3 {
|
||||
color: #9cdda7;
|
||||
text-shadow: #ff0000 0 0 10px;
|
||||
}
|
||||
|
||||
.forum .category-name {
|
||||
background-color: #111641;
|
||||
}
|
||||
|
||||
.forum .forum-row {
|
||||
background-color: #1e234e;
|
||||
}
|
||||
|
||||
.forum .forum-header {
|
||||
background-color: #262d6d;
|
||||
}
|
||||
|
||||
.stats_forum ul {
|
||||
background-color: #000000;
|
||||
color: #fff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
span.unread-badge {
|
||||
color: #00fc45;
|
||||
text-shadow: #00ff00 0 0 15px;
|
||||
}
|
||||
|
||||
/* FORMULAIRES */
|
||||
|
||||
button, .btn-default {
|
||||
background-color: #002d33;
|
||||
color: #fff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
button:hover, .btn-default:hover {
|
||||
background-color: #00cfcf;
|
||||
color: #fff;
|
||||
box-shadow: #00cfcf 0 0 15px;
|
||||
}
|
||||
|
||||
.btn-add {
|
||||
background-color: #003311;
|
||||
color: #fff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
.btn-add:hover {
|
||||
background-color: #00cf45;
|
||||
color: #fff;
|
||||
box-shadow: #00ff00 0 0 15px;
|
||||
}
|
||||
|
||||
.btn-danger {
|
||||
background-color: #330000;
|
||||
color: #fff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
.btn-danger:hover {
|
||||
background-color: #ff0000;
|
||||
color: #fff;
|
||||
box-shadow: #ff0000 0 0 15px;
|
||||
}
|
||||
|
||||
.btn-warning {
|
||||
background-color: #333300;
|
||||
color: #fff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
.btn-warning:hover {
|
||||
background-color: #ffae00;
|
||||
color: #9b3201;
|
||||
box-shadow: #ffa600 0 0 15px;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"], input[type="email"], select, textarea {
|
||||
background-color: #000000;
|
||||
color: #fff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
/* Pagination */
|
||||
.page-link {
|
||||
background-color: #000000;
|
||||
color: #fff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
li.active span {
|
||||
box-shadow: #00ff00 0 0 15px;
|
||||
}
|
||||
|
||||
li.disabled span {
|
||||
background-color: #494949;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.footer p {
|
||||
color: #ffffff;
|
||||
text-shadow: #ff0000 0 0 10px;
|
||||
}
|
||||
42
static/themes/default/forms.css
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.btn, input[type="submit"], button {
|
||||
border: 2px solid;
|
||||
padding: 5px 10px;
|
||||
margin: 5px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
max-width: max-content;
|
||||
font-size: 0.8rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.btn-small {
|
||||
font-size: 0.5rem;
|
||||
}
|
||||
|
||||
.btn-large {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"], input[type="email"], select, textarea {
|
||||
padding: 5px;
|
||||
margin: 5px;
|
||||
width: 99%;
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"], input[type="email"], select {
|
||||
height: 35px;
|
||||
}
|
||||
|
||||
.form-inline {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
13
static/themes/default/gallery.css
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
.gallery {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.gallery-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
max-width: 200px;
|
||||
}
|
||||
338
static/themes/default/games.css
Normal file
|
|
@ -0,0 +1,338 @@
|
|||
.card-game {
|
||||
border: 1px solid #fff;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.card-game .header {
|
||||
border-bottom: 1px solid #fff;
|
||||
padding: 10px;
|
||||
background-color: rgba(0, 153, 255, 0.71);
|
||||
font-size: 1.1rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.card-game .header a {
|
||||
color: #d89de2;
|
||||
}
|
||||
|
||||
.card-game .body {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.card-game .footer {
|
||||
border-top: 1px solid #fff;
|
||||
background-color: rgba(0, 153, 255, 0.71);
|
||||
padding: 10px;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
ul.inline {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
ul.inline li {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin: 0 10px 0 0;
|
||||
}
|
||||
|
||||
.countdown {
|
||||
font-size: 20px;
|
||||
color: red;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* PETIT BAC */
|
||||
.game-bac-letter {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 60px;
|
||||
border: 1px solid rgb(0, 204, 255);
|
||||
background-color: rgba(0, 153, 255, 0.71);
|
||||
box-shadow: 0 0 35px orangered;
|
||||
border-radius: 5px;
|
||||
margin: auto;
|
||||
padding: 10px;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
table.bac, table.bac th, table.bac tr, table.bac td {
|
||||
border: 1px solid #fff;
|
||||
}
|
||||
|
||||
table.bac {
|
||||
width: 90%;
|
||||
margin: auto;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table.bac th {
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
table.bac th, table.bac td {
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
table.bac td input[type="text"]{
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
font-family: 'Courier New', Courier, monospace;
|
||||
}
|
||||
|
||||
table.bac td input:focus {
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
table.quiz, table.quiz th, table.quiz tr, table.quiz td {
|
||||
border: 1px solid #fff;
|
||||
}
|
||||
|
||||
table.quiz {
|
||||
width: 90%;
|
||||
margin: auto;
|
||||
border-collapse: collapse;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
table.quiz th {
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
table.quiz th, table.quiz td {
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
table.quiz td ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.progress-circle {
|
||||
position: relative;
|
||||
}
|
||||
.circular-chart {
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
}
|
||||
.circular-chart path:nth-child(2) {
|
||||
transition: stroke-dasharray 1s ease-in-out;
|
||||
}
|
||||
.score-details {
|
||||
animation: fadeInUp 0.5s ease-out;
|
||||
margin-bottom: 4;
|
||||
}
|
||||
@keyframes fadeInUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* Quiz Results Styles */
|
||||
.quiz-result-container {
|
||||
max-width: 800px;
|
||||
margin: 40px auto;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.quiz-result-card {
|
||||
background-color: rgba(0, 153, 255, 0.1);
|
||||
border: 1px solid #fff;
|
||||
padding: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.quiz-title {
|
||||
color: #fff;
|
||||
font-size: 24px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.progress-circle-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
.progress-circle {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.circular-chart {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
max-height: 200px;
|
||||
}
|
||||
|
||||
.progress-path {
|
||||
transition: stroke-dasharray 1s ease-in-out;
|
||||
}
|
||||
|
||||
.progress-path.high { stroke: #00ff00; }
|
||||
.progress-path.medium { stroke: #ffff00; }
|
||||
.progress-path.low { stroke: #ff0000; }
|
||||
|
||||
.percentage-text {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
font-size: 32px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.score-details {
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
.score-details h3 {
|
||||
color: #fff;
|
||||
font-size: 20px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.score-number {
|
||||
font-size: 36px;
|
||||
font-weight: bold;
|
||||
margin: 15px 0;
|
||||
}
|
||||
|
||||
.score-number.high { color: #00ff00; }
|
||||
.score-number.medium { color: #ffff00; }
|
||||
.score-number.low { color: #ff0000; }
|
||||
|
||||
.score-message {
|
||||
color: #fff;
|
||||
font-size: 18px;
|
||||
margin: 15px 0;
|
||||
}
|
||||
|
||||
@keyframes fadeInUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.score-details {
|
||||
animation: fadeInUp 0.5s ease-out;
|
||||
}
|
||||
|
||||
.quiz-score {
|
||||
float: right;
|
||||
color: #d89de2;
|
||||
font-size: 0.9rem;
|
||||
padding: 2px 5px;
|
||||
}
|
||||
|
||||
/* Nouveaux styles pour la page quiz */
|
||||
.quiz-container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.quiz-title {
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
font-size: 2rem;
|
||||
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.quiz-form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.quiz-question {
|
||||
background: rgba(0, 153, 255, 0.1);
|
||||
border: 1px solid #fff;
|
||||
margin-bottom: 20px;
|
||||
border-radius: 5px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.question-header {
|
||||
background: rgba(0, 153, 255, 0.71);
|
||||
padding: 10px 15px;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
|
||||
.question-content {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.question-content h3 {
|
||||
color: #fff;
|
||||
margin-bottom: 15px;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.choices-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.choice-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 8px;
|
||||
border-radius: 4px;
|
||||
transition: background-color 0.2s;
|
||||
}
|
||||
|
||||
.choice-item:hover {
|
||||
background: rgba(0, 153, 255, 0.2);
|
||||
}
|
||||
|
||||
.choice-item input[type="radio"] {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.choice-item label {
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.submit-container {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.submit-button {
|
||||
background: rgba(0, 153, 255, 0.71);
|
||||
color: white;
|
||||
border: 1px solid #fff;
|
||||
padding: 12px 30px;
|
||||
font-size: 1.1rem;
|
||||
cursor: pointer;
|
||||
border-radius: 5px;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.submit-button:hover {
|
||||
background: rgba(0, 153, 255, 0.9);
|
||||
box-shadow: 0 0 15px rgba(0, 153, 255, 0.5);
|
||||
}
|
||||
59
static/themes/default/grid.css
Executable file
|
|
@ -0,0 +1,59 @@
|
|||
/* Système de grille utilisant les flexbox */
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.row-xs {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
width: 80%;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.col {
|
||||
flex: 1;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
/* classes pour les largeurs des colonnes */
|
||||
|
||||
.col-1 { flex: 0 0 8.33%; }
|
||||
.col-2 { flex: 0 0 16.667%; }
|
||||
.col-3 { flex: 0 0 25%; }
|
||||
.col-4 { flex: 0 0 33.33%; }
|
||||
.col-5 { flex: 0 0 46.66%; }
|
||||
.col-6 { flex: 0 0 50%; }
|
||||
.col-7 { flex: 0 0 58.33%; }
|
||||
.col-8 { flex: 0 0 66.66%; }
|
||||
.col-9 { flex: 0 0 75%; }
|
||||
.col-10 { flex: 0 0 83.33%; }
|
||||
.col-11 { flex: 0 0 91.66%; }
|
||||
.col-12 { flex: 0 0 100%; }
|
||||
|
||||
/* Responsive */
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
.row {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.col {
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.menu ul.guestbook li span.date {
|
||||
color: #646788;
|
||||
}
|
||||
|
||||
.col-2 {
|
||||
order: 2; /* Placer après .col-7 */
|
||||
}
|
||||
|
||||
.col-7 {
|
||||
order: 1; /* Placer avant .col-1 */
|
||||
}
|
||||
}
|
||||
BIN
static/themes/default/img/archer_sprite.png
Executable file
|
After Width: | Height: | Size: 75 KiB |
BIN
static/themes/default/img/bg.png
Executable file
|
After Width: | Height: | Size: 123 B |
BIN
static/themes/default/img/bg2.png
Executable file
|
After Width: | Height: | Size: 154 B |
BIN
static/themes/default/img/bg3.png
Executable file
|
After Width: | Height: | Size: 161 B |
BIN
static/themes/default/img/bg_container.png
Executable file
|
After Width: | Height: | Size: 101 B |
BIN
static/themes/default/img/bg_galactique.png
Executable file
|
After Width: | Height: | Size: 34 KiB |
BIN
static/themes/default/img/bg_galactique2.png
Executable file
|
After Width: | Height: | Size: 436 KiB |
BIN
static/themes/default/img/computer.png
Executable file
|
After Width: | Height: | Size: 53 KiB |
BIN
static/themes/default/img/gamepad.png
Executable file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
static/themes/default/img/gamepad2.png
Executable file
|
After Width: | Height: | Size: 131 KiB |
BIN
static/themes/default/img/mage_sprite.png
Executable file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
static/themes/default/img/music.png
Executable file
|
After Width: | Height: | Size: 18 KiB |
BIN
static/themes/default/img/news_contrib.png
Executable file
|
After Width: | Height: | Size: 197 KiB |
BIN
static/themes/default/img/television.png
Executable file
|
After Width: | Height: | Size: 282 KiB |
60
static/themes/default/pm.css
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
|
||||
|
||||
.table {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 90%;
|
||||
margin: 0 auto 10px auto;
|
||||
border: 1px solid #e0e0e0;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
padding: 15px;
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
|
||||
.table .header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex: 1;
|
||||
border-bottom: 2px solid #16396a;
|
||||
font-weight: 600;
|
||||
font-size: 1rem;
|
||||
color: #dbdbdb;
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.table .body {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex: 1;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
color: #666666;
|
||||
padding: 12px 0;
|
||||
transition: background-color 0.2s ease;
|
||||
}
|
||||
|
||||
.table .body:hover {
|
||||
background: #111d4e53;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.new-message {
|
||||
display: inline-block;
|
||||
color: #ffffff;
|
||||
background-color: #4CAF50;
|
||||
border: none;
|
||||
font-size: 0.75rem;
|
||||
margin-right: 10px;
|
||||
padding: 2px 8px;
|
||||
border-radius: 12px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
@keyframes glow {
|
||||
from {
|
||||
box-shadow: 0 0 5px rgba(255, 0, 255, 0.8);
|
||||
}
|
||||
to {
|
||||
box-shadow: 0 0 10px rgba(255, 0, 255, 1);
|
||||
}
|
||||
}
|
||||
35
static/themes/default/post.css
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
.postmenu {
|
||||
border: 1px solid #fff;
|
||||
background-color: rgba(0, 0, 0, 0.8);
|
||||
width: 300px;
|
||||
margin: 10px;
|
||||
float: right;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.postmenu .header {
|
||||
background-color: rgb(28, 42, 78);
|
||||
padding: 5px;
|
||||
font-size: 1.2rem;
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
|
||||
.postmenu .body {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.postmenu .body ul {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.postmenu .body ul li {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.postmenu .body ul li:hover {
|
||||
margin-left: 10px;
|
||||
}
|
||||
285
static/themes/default/profile.css
Normal file
|
|
@ -0,0 +1,285 @@
|
|||
.profile-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.profile-avatar {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
border-radius: 50%;
|
||||
object-fit: cover;
|
||||
border: 3px solid #6699cc;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.profile-avatar:hover {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.profile-info {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.profile-name {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
color: #003366;
|
||||
}
|
||||
|
||||
.profile-username {
|
||||
color: #336699;
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.profile-stats {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
||||
gap: 1rem;
|
||||
margin: 2rem 0;
|
||||
padding: 1rem;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
text-align: center;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
color: #003366;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
color: #336699;
|
||||
font-size: 0.9rem;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.profile-bio {
|
||||
line-height: 1.6;
|
||||
color: #333333;
|
||||
margin: 2rem 0;
|
||||
padding: 1rem;
|
||||
border-left: 4px solid #6699cc;
|
||||
}
|
||||
|
||||
.profile-contact {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.contact-button {
|
||||
padding: 0.8rem 1.5rem;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
background: #6699cc;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
transition: background 0.3s ease;
|
||||
}
|
||||
|
||||
.contact-button:hover {
|
||||
background: #003366;
|
||||
}
|
||||
|
||||
.profile-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 1fr;
|
||||
gap: 2rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.profile-main {
|
||||
background: #f0f0f04d;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.profile-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.avatar-container {
|
||||
position: relative;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
.level-badge {
|
||||
position: absolute;
|
||||
background: #078356;
|
||||
color: white;
|
||||
padding: 0.5rem;
|
||||
border-radius: 50%;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 0.8rem;
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.level-number {
|
||||
font-size: 1rem;
|
||||
font-weight: bold;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.profile-info {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.username {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
color: #003366;
|
||||
}
|
||||
|
||||
.joined-date {
|
||||
color: #9fcfff;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.profile-bio {
|
||||
margin-top: 2rem;
|
||||
padding-top: 2rem;
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
|
||||
.bio-content {
|
||||
line-height: 1.6;
|
||||
color: #d3d3d3;
|
||||
}
|
||||
|
||||
/* Colonne de droite */
|
||||
.profile-stats {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.stats-card, .achievements-card {
|
||||
background: #f0f0f04d;
|
||||
border-radius: 8px;
|
||||
padding: 1.5rem;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.stats-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 1rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
text-align: center;
|
||||
padding: 1rem;
|
||||
background: #ffffff78;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
color: #444;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: 0.9rem;
|
||||
color: #666;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.achievements-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.badge-item {
|
||||
text-align: center;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
.badge-item img {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.badge-name {
|
||||
font-size: 0.8rem;
|
||||
color: #336699;
|
||||
}
|
||||
|
||||
.profile-actions {
|
||||
margin-top: 2rem;
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: #6699cc;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background: #99ccff;
|
||||
color: #003366;
|
||||
}
|
||||
|
||||
.inventory {
|
||||
background: #f0f0f04d;
|
||||
border-radius: 8px;
|
||||
padding: 1.5rem;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||
width: 98%;
|
||||
margin: 10px auto;
|
||||
}
|
||||
|
||||
.inventory-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
||||
gap: 15px;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.inventory-item {
|
||||
text-align: center;
|
||||
padding: 1rem;
|
||||
background: #ffffff78;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.item-quantity {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
color: #003366;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 768px) {
|
||||
.profile-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.stats-grid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
108
static/themes/default/shop.css
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
a.shop {
|
||||
text-decoration: none;
|
||||
color: #333;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
a.shop:hover {
|
||||
text-decoration: none;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.shop {
|
||||
padding: 10px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
flex-direction: row;
|
||||
}
|
||||
.card-shop {
|
||||
background: #fff;
|
||||
border: 2px solid #000;
|
||||
border-radius: 8px;
|
||||
margin: 15px 0;
|
||||
padding: 15px;
|
||||
box-shadow: 3px 3px 0px #000;
|
||||
transition: transform 0.2s;
|
||||
width: 250px;
|
||||
min-height: 380px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
margin-right: 15px;
|
||||
vertical-align: top;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.card-shop:hover {
|
||||
transform: translateY(-5px);
|
||||
background: #f0f7ff;
|
||||
}
|
||||
|
||||
.card-shop img {
|
||||
max-width: 220px;
|
||||
margin-bottom: 10px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.card-shop .card-title {
|
||||
font-family: "Comic Sans MS", cursive;
|
||||
color: #0066cc;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.card-shop .card-text {
|
||||
font-family: Arial, sans-serif;
|
||||
color: #333;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.card-shop .card-content {
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.card-shop .button-container {
|
||||
margin-top: auto;
|
||||
text-align: center;
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
||||
.btn-shop-primary {
|
||||
background: linear-gradient(to bottom, #0099ff, #0066cc);
|
||||
border: 2px solid #000;
|
||||
border-radius: 5px;
|
||||
padding: 5px 15px;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.btn-shop-primary:hover {
|
||||
background: linear-gradient(to bottom, #00bbff, #0099ff);
|
||||
}
|
||||
|
||||
.btn-shop-secondary {
|
||||
background: linear-gradient(to bottom, #ffcc00, #ff9900);
|
||||
border: 2px solid #000;
|
||||
border-radius: 5px;
|
||||
padding: 5px 15px;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.btn-shop-large {
|
||||
padding: 10px 20px;
|
||||
height: 65px;
|
||||
}
|
||||
|
||||
.fa-coins {
|
||||
color: #ffd700;
|
||||
}
|
||||
305
static/themes/default/structure.css
Executable file
|
|
@ -0,0 +1,305 @@
|
|||
/* Marges, paddings, dimensions, flexbox */
|
||||
*, html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
/* margin: 20px 0 20px 0; */
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
p, ul {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
p.date {
|
||||
font-size: 0.8em;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.notification {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.notification ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.notification ul li {
|
||||
padding: 10px;
|
||||
border: 2px solid;
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.container, .menu {
|
||||
padding: 0;
|
||||
border: 2px solid;
|
||||
margin-bottom: 10px;
|
||||
border-radius: 2px 2px 10px 10px;
|
||||
}
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.menu h2 {
|
||||
border-bottom: 2px solid;
|
||||
padding: 10px;
|
||||
margin: 0 0 20px;
|
||||
width: 100%;
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.container h2 {
|
||||
border-bottom: 2px solid;
|
||||
padding: 10px;
|
||||
margin: 0 0 20px;
|
||||
width: 100%;
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
|
||||
.menu ul {
|
||||
list-style-type: none;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.menu ul li {
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.menu ul.guestbook {
|
||||
max-height: 200px;
|
||||
overflow-y: auto;
|
||||
margin: 5px;
|
||||
border: 1px solid;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.new-item-menu::after {
|
||||
margin-left: 10px;
|
||||
padding: 2px;
|
||||
font-size: 0.6rem;
|
||||
border: 1px solid;
|
||||
content: "nouveau !";
|
||||
}
|
||||
|
||||
.badge {
|
||||
border: 1px solid;
|
||||
border-radius: 3px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
form.incol {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-wrap: wrap;
|
||||
justify-items: auto;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.container .header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.news, .post-card {
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
.guestbook p {
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
border: 2px solid;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.news-header, .post-card-header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
border: 1px solid;
|
||||
margin: 10px 10px -10px 10px;
|
||||
}
|
||||
|
||||
.contrib {
|
||||
border: 1px solid;
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.contrib a {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
|
||||
span.post-offline {
|
||||
color:red;
|
||||
font-weight:bold;
|
||||
margin:5px;
|
||||
background-image: url('../../img/icons/shield-red-cross.png');
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
span.post-online {
|
||||
color:green;
|
||||
font-weight:bold;
|
||||
margin:5px;
|
||||
background-image: url('../../img/icons/shield-green-v.png');
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
/* forum */
|
||||
.forum {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 0 0 10px 0;
|
||||
}
|
||||
|
||||
.forum .row {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.forum h3 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.forum-header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
border: 1px 1px 0 1px solid;
|
||||
margin: 10px 10px -10px 10px;
|
||||
}
|
||||
|
||||
.forum-column, .forum-column-detail {
|
||||
flex: 1;
|
||||
flex-direction: column;
|
||||
border: 1px solid;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.forum-column:nth-child(1) {
|
||||
flex: 2;
|
||||
}
|
||||
|
||||
.forum-column:nth-child(2), .forum-column:nth-child(3) {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.forum-column-detail:nth-child(1) {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.forum-column-detail:nth-child(2) {
|
||||
flex: 4;
|
||||
}
|
||||
|
||||
.forum-column-detail ul {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.forum-body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border: 0 1px 1px 1px solid;
|
||||
margin: 10px 10px -10px 10px;
|
||||
}
|
||||
|
||||
.forum-body img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.forum-row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
border: 0 1px 0 1px solid;
|
||||
}
|
||||
|
||||
.stats_forum {
|
||||
margin: 20px 0 10px 0;
|
||||
border-top: 2px solid
|
||||
}
|
||||
|
||||
.stats_forum ul {
|
||||
list-style-type: none;
|
||||
border: 1px solid;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.stats_forum ul li {
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
ul.breadcrumbs {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
font-size: 0.6rem;
|
||||
list-style-type: none;
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
ul.breadcrumbs li {
|
||||
margin: 0 5px 0 5px;
|
||||
}
|
||||
|
||||
ul.breadcrumbs li a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Pagination */
|
||||
ul.pagination {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
list-style-type: none;
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
ul.pagination li.page-item {
|
||||
margin: 0 5px 0 5px;
|
||||
}
|
||||
|
||||
ul.pagination li.page-item a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.page-link {
|
||||
padding: 5px 10px;
|
||||
border: 2px solid;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
max-width: max-content;
|
||||
font-size: 0.8rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
li.disabled {
|
||||
pointer-events: none;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.warning-announce-not-mobile-compatible {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
20
static/themes/default/typo.css
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=VT323&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
|
||||
|
||||
body {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
|
||||
h1, h2, .breadcrumbs, .btn, input, select, button, .notification, .page-link, .guestbook p {
|
||||
font-family: 'Press Start 2P', cursive;
|
||||
}
|
||||
|
||||
.menu h2 {
|
||||
font-family: 'VT323', cursive;
|
||||
}
|
||||
|
||||
.container {
|
||||
font-family: "Chakra Petch", sans-serif;
|
||||
}
|
||||
63
static/themes/error.css
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
.error-container {
|
||||
text-align: center;
|
||||
padding: 40px 20px;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.error-code {
|
||||
font-size: 120px;
|
||||
font-weight: bold;
|
||||
color: #e0e0e0;
|
||||
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
margin-bottom: 20px;
|
||||
font-family: 'Arial', sans-serif;
|
||||
}
|
||||
|
||||
.error-message {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.error-message h1 {
|
||||
color: #333;
|
||||
font-size: 24px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.error-message p {
|
||||
color: #666;
|
||||
font-size: 16px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.error-actions {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.error-btn {
|
||||
display: inline-block;
|
||||
padding: 12px 24px;
|
||||
background: linear-gradient(to bottom, #4d90fe, #357ae8);
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
border-radius: 4px;
|
||||
font-weight: bold;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.error-btn:hover {
|
||||
background: linear-gradient(to bottom, #357ae8, #2f5bb7);
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
/* Style rétro années 2000 */
|
||||
@media screen and (min-width: 768px) {
|
||||
.error-container {
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
background: #f9f9f9;
|
||||
margin-top: 50px;
|
||||
}
|
||||
}
|
||||
89
static/themes/generic.css
Normal file
|
|
@ -0,0 +1,89 @@
|
|||
span.money {
|
||||
color: orange;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
span.money::after {
|
||||
content: url('../../img/icons/money_25x25.png');
|
||||
}
|
||||
|
||||
span.bag::before {
|
||||
content: url('../../img/icons/bag_25x25.png');
|
||||
}
|
||||
|
||||
.modal {
|
||||
display: none;
|
||||
position: fixed;
|
||||
z-index: 9999;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
background-color: rgb(0,0,0);
|
||||
background-color: rgba(0,0,0,0.4);
|
||||
}
|
||||
|
||||
.modal .modal-item {
|
||||
background-color: rgba(0,0,0,0.7);
|
||||
margin: 15% auto;
|
||||
padding: 20px;
|
||||
border: 1px solid #888;
|
||||
border-radius: 5px;
|
||||
width: 50%;
|
||||
min-height: 100px;
|
||||
}
|
||||
|
||||
.modal .modal-item .modal-close {
|
||||
color: #c70a0a;
|
||||
float: right;
|
||||
font-size: 28px;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
.modal .modal-item .modal-close:hover {
|
||||
color: rgb(255, 0, 0);
|
||||
}
|
||||
|
||||
.modal .modal-item .modal-header {
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 10px;
|
||||
text-shadow: none;
|
||||
color:#e3e3e3;
|
||||
}
|
||||
|
||||
.modal .modal-item .modal-body {
|
||||
margin-bottom: 10px;
|
||||
text-shadow: none;
|
||||
color:#e3e3e3;
|
||||
}
|
||||
|
||||
.modal .modal-item .modal-footer {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
pre[class*="language-"] {
|
||||
white-space: pre !important;
|
||||
word-wrap: normal !important;
|
||||
overflow-x: auto !important;
|
||||
tab-size: 4;
|
||||
}
|
||||
|
||||
code[class*="language-"] {
|
||||
white-space: pre !important;
|
||||
word-spacing: normal;
|
||||
word-break: normal;
|
||||
word-wrap: normal;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
||||
gap: 20px;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||