224 lines
4.2 KiB
CSS
224 lines
4.2 KiB
CSS
/*=====================Gamme color + theme*/
|
|
:root[data-theme="purple"]{
|
|
--dark-color: #380052;
|
|
--light-color: #C303FF;
|
|
--accent-color: #00FF76;
|
|
}
|
|
|
|
:root[data-theme="orange"]{
|
|
--dark-color: #E67300;
|
|
--light-color: #99FF99;
|
|
--accent-color: #00CC00;
|
|
}
|
|
|
|
:root[data-theme="green"]{
|
|
--dark-color-overlay: 0 77 51;
|
|
--accent-color-overlay: 230 0 230;
|
|
--dark-color:#004D33;
|
|
--darker-color: #000D07;
|
|
--light-color: #33FF77;
|
|
--accent-color: #E600E6;
|
|
}
|
|
|
|
/*====================Typo*/
|
|
@font-face {
|
|
font-family: 'lineal';
|
|
src: url('./typo/Lineal-Heavy.ttf');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'pressStart2P';
|
|
src: url('./typo/PressStart2P-Regular.ttf');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'velvelyne';
|
|
src: url('./typo/Velvelyne-Light.ttf') format('truetype');
|
|
font-weight:lighter;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'avara';
|
|
src: url('./typo/Avara-Black.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'velvelyne';
|
|
src:url('./typo/Velvelyne-Bold.ttf') format('truetype');
|
|
font-weight: bold;
|
|
}
|
|
|
|
/*================App racine vue*/
|
|
#app{
|
|
inset:0;
|
|
position: fixed;
|
|
background: #002613;
|
|
background: linear-gradient(200deg,var(--dark-color) 0%, var(--darker-color) 100%);
|
|
cursor:cell;
|
|
}
|
|
|
|
/*===================Desact. Default*/
|
|
input {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
}
|
|
|
|
button{
|
|
border: none;
|
|
}
|
|
|
|
a{
|
|
text-decoration: none;
|
|
}
|
|
|
|
/*===============Cusor*/
|
|
button:hover{
|
|
cursor: pointer;
|
|
}
|
|
|
|
p{
|
|
cursor:cell;
|
|
pointer-events: none;
|
|
}
|
|
|
|
|
|
/*=====================Classes générales*/
|
|
.windowContainer{
|
|
position:absolute;
|
|
border-style: solid;
|
|
border-width: thin;
|
|
border-color: var(--light-color);
|
|
border-radius: 16.1px;
|
|
background-color: transparent;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.windowTitle{
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
background-color: var(--light-color);
|
|
color: var(--dark-color);
|
|
font-family: 'lineal';
|
|
font-size: 16.1px;
|
|
top: 0;
|
|
border-radius: 16.1px 16.1px 0 0;
|
|
width:100%;
|
|
height: 33px;
|
|
}
|
|
|
|
.titleContent{
|
|
box-sizing: border-box;
|
|
padding-left: 16.1px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.titleBtn{
|
|
margin-right: 16.1px;
|
|
background-color: var(--light-color);
|
|
font-family: 'lineal';
|
|
font-size: 16.1px;
|
|
color: var(--dark-color);
|
|
border-color: var(--dark-color);
|
|
border-style: solid;
|
|
border-radius: 16.1px;
|
|
border-width: thin;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
height: 27px;
|
|
padding: 0 16.1px 0 16.1px;
|
|
}
|
|
|
|
.titleBtn:hover{
|
|
background-color: var(--accent-color);
|
|
}
|
|
|
|
.icon{
|
|
position: relative;
|
|
height:50%;
|
|
width:auto;
|
|
fill: currentColor;
|
|
}
|
|
|
|
|
|
/*=====================Animation*/
|
|
.floating {
|
|
position: fixed;
|
|
animation: float 1s ease-in-out infinite;
|
|
}
|
|
|
|
.floating:hover{
|
|
animation: none;
|
|
}
|
|
|
|
@keyframes float {
|
|
0% { transform: translateY(0px); }
|
|
35% { transform: translateY(1px); }
|
|
50% { transform: translateY(-10px); }
|
|
65% { transform: translateY(1px); }
|
|
100% { transform: translateY(0px); }
|
|
}
|
|
|
|
.blinking{
|
|
animation: blink 3.33s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes blink {
|
|
0% { background-color: rgba(var(--dark-color-overlay)/33.3%);}
|
|
25% { background-color: rgba(var(--accent-color-overlay)/33.3%);}
|
|
50% { background-color: rgba(var(--dark-color-overlay)/33.3%);}
|
|
75% { background-color: rgba(var(--accent-color-overlay)/33.3%);}
|
|
100% { background-color: rgba(var(--dark-color-overlay)/33.3%);}
|
|
}
|
|
|
|
/*==========================Moveable*/
|
|
.moveable-control-box {
|
|
display: none !important;
|
|
}
|
|
|
|
/*=====================Z-index panneaux flottants*/
|
|
.windowContainer.zBase{
|
|
z-index: 10;
|
|
}
|
|
|
|
.windowContainer.zTop{
|
|
border-color: var(--accent-color);
|
|
z-index: 33;
|
|
}
|
|
.zTop .windowTitle{
|
|
background-color: var(--accent-color);
|
|
}
|
|
|
|
.zTop .titleBtn {
|
|
background-color: var(--accent-color);
|
|
}
|
|
|
|
.zTop .titleBtn:hover {
|
|
background-color: var(--light-color);
|
|
}
|
|
|
|
/*=====================Overlay*/
|
|
.overlay{
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
pointer-events: none;
|
|
opacity: 0.0333;
|
|
z-index:333;
|
|
}
|
|
|
|
#denimOver{
|
|
opacity: 0.0777;
|
|
z-index:334;
|
|
}
|