/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : 19 août 2023, 09:14:45
    Author     : LOICK
*/

html{
  line-height:1.5em;
  font-family: sans-serif;
  scrollbar-width:none;
}
body{
  background-color: white;
}

a{
  color:darkblue;
  text-decoration:none;
  cursor:pointer;
  transition: all ease-in-out 0.5s;


}

a:hover{
  color: aqua;
  transition: all ease-in-out 0.5s;

}

a::after{
  margin-left:5px;
  content:'\25BC';
  color:green;
  /*font-size:1.2em;*/
}

.arrow{
  cursor: pointer;
  color:green;
  font-size:1.3em;
  margin-left:5px;
}

.toggleDiv{
  border-left: solid 2px darkblue;
  padding-left: 10px;
  display:none;
  margin-top:10px;

}
.title{
  text-align:left;
  margin-top:10px;
  margin-bottom:10px;
  padding-bottom: 10px;
  color:red;
  font-weight:bold;
  font-size: min(24pt,4.5vw);
  line-height: 1.3em;
}

.toggle{
  color:green;
  text-decoration: none;
  font-style: italic;


}

.error{
  color:red;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flashy{
  width: auto;
  padding-bottom:2px;
  animation-name: fade;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;

}

.without_arrow::after{
  content:"";
}

@keyframes fade {
  0%{
    opacity: 0.5
  }

  50% {
    opacity: 1
  }

}
