188 lines
3.2 KiB
CSS
188 lines
3.2 KiB
CSS
.griglia {
|
|
margin-left: 10%;
|
|
margin-right: 10%;
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
grid-template-rows: 0.1fr 0.000001fr 0.05fr 0.5fr 0.000001fr 0.6fr;
|
|
grid-column-gap: 50px;
|
|
grid-row-gap: 50px;
|
|
color: white;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
background-image: url(img/Tutte.png);
|
|
background-color: black;
|
|
}
|
|
|
|
.titolo {
|
|
grid-area: 1 / 1 / 2 / 4;
|
|
border: 2px solid green;
|
|
background-color: black;
|
|
font-size: 30pt;
|
|
padding-bottom: 5px;
|
|
animation: rainbow 2.5s linear;
|
|
animation-iteration-count: infinite;
|
|
}
|
|
|
|
@keyframes rainbow{
|
|
100%,0%{
|
|
color: rgb(255,0,0);
|
|
}
|
|
8%{
|
|
color: rgb(255,127,0);
|
|
}
|
|
16%{
|
|
color: rgb(255,255,0);
|
|
}
|
|
25%{
|
|
color: rgb(127,255,0);
|
|
}
|
|
33%{
|
|
color: rgb(0,255,0);
|
|
}
|
|
41%{
|
|
color: rgb(0,255,127);
|
|
}
|
|
50%{
|
|
color: rgb(0,255,255);
|
|
}
|
|
58%{
|
|
color: rgb(0,127,255);
|
|
}
|
|
66%{
|
|
color: rgb(0,0,255);
|
|
}
|
|
75%{
|
|
color: rgb(127,0,255);
|
|
}
|
|
83%{
|
|
color: rgb(255,0,255);
|
|
}
|
|
91%{
|
|
color: rgb(255,0,127);
|
|
}
|
|
}
|
|
|
|
|
|
.nomeRiquadro1 {
|
|
grid-area: 3 / 1 / 4 / 2;
|
|
border: 2px solid green;
|
|
background-color: black;
|
|
}
|
|
.nomeRiquadro2 {
|
|
grid-area: 3 / 3 / 4 / 4;
|
|
border: 2px solid green;
|
|
background-color: black;
|
|
}
|
|
.nomeRiquadro3 {
|
|
grid-area: 5 / 1 / 6 / 2;
|
|
border: 2px solid #008000;
|
|
background-color: black;
|
|
}
|
|
|
|
.content {
|
|
grid-area: 4 / 2 / 6 / 3;
|
|
border: 2px solid green;
|
|
background-color: black;
|
|
}
|
|
|
|
.nomi {
|
|
grid-area: 4 / 3 / 5 / 4;
|
|
border: 2px solid green;
|
|
background-color: black;
|
|
}
|
|
|
|
.nomi > ul{
|
|
overflow-y: scroll;
|
|
line-height: 1em; /* altezza di una riga */
|
|
height: calc((1em * 15) + (1em / 2)); /* 15 righe */
|
|
background-color: black;
|
|
}
|
|
|
|
.stats {
|
|
grid-area: 4 / 1 / 5 / 2;
|
|
border: 2px solid green;
|
|
background-color: black;
|
|
}
|
|
|
|
.segno {
|
|
grid-area: 6 / 1 / 7 / 2;
|
|
border: 2px solid green;
|
|
background-color: black;
|
|
}
|
|
|
|
.tabellaColonna2{
|
|
padding-left: 40px;
|
|
background-color: black;
|
|
}
|
|
|
|
#trovaSegno > :not(#link){
|
|
display: none;
|
|
}
|
|
|
|
button {
|
|
padding: 0.6em 2em;
|
|
border: none;
|
|
outline: none;
|
|
color: rgb(255, 255, 255);
|
|
background: #111;
|
|
cursor: pointer;
|
|
position: relative;
|
|
z-index: 0;
|
|
border-radius: 10px;
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
touch-action: manipulation;
|
|
}
|
|
|
|
button:before {
|
|
content: "";
|
|
background: linear-gradient(
|
|
45deg,
|
|
#ff0000,
|
|
#ff7300,
|
|
#fffb00,
|
|
#48ff00,
|
|
#00ffd5,
|
|
#002bff,
|
|
#7a00ff,
|
|
#ff00c8,
|
|
#ff0000
|
|
);
|
|
position: absolute;
|
|
top: -2px;
|
|
left: -2px;
|
|
background-size: 400%;
|
|
z-index: -1;
|
|
filter: blur(5px);
|
|
-webkit-filter: blur(5px);
|
|
width: calc(100% + 4px);
|
|
height: calc(100% + 4px);
|
|
animation: glowing-button 20s linear infinite;
|
|
transition: opacity 0.3s ease-in-out;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
@keyframes glowing-button {
|
|
0% {
|
|
background-position: 0 0;
|
|
}
|
|
50% {
|
|
background-position: 400% 0;
|
|
}
|
|
100% {
|
|
background-position: 0 0;
|
|
}
|
|
}
|
|
|
|
button:after {
|
|
z-index: -1;
|
|
content: "";
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #222;
|
|
left: 0;
|
|
top: 0;
|
|
border-radius: 10px;
|
|
}
|
|
|