43 lines
826 B
CSS
43 lines
826 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&display=swap');
|
|
|
|
html {
|
|
font-family: 'Comfortaa', cursive;
|
|
}
|
|
|
|
#DivG, #DivM, #DivD {
|
|
border: 2px solid rgb(95 97 110);
|
|
border-radius: 0.5em;
|
|
width: 300px;
|
|
height: 100px;
|
|
margin-right: 10px;
|
|
float: left;
|
|
text-align: center;
|
|
width: 600px;
|
|
align-content: center;
|
|
}
|
|
|
|
.DivLien {
|
|
border: 2px solid rgb(95 97 110);
|
|
border-radius: 0.5em;
|
|
width: 500px;
|
|
height: 100px;
|
|
align-content: center;
|
|
}
|
|
|
|
.mimicolor {
|
|
font-family: monospace;
|
|
font-size: 3em;
|
|
animation: color-change 1s infinite;
|
|
}
|
|
|
|
@keyframes color-change {
|
|
0% { color: #cc0001; }
|
|
16% { color: #fb940b; }
|
|
32% { color: #ffff01; }
|
|
48% { color: #01cc00; }
|
|
64% { color: #03c0c6; }
|
|
80% { color: #0000fe; }
|
|
90% { color: #762ca7; }
|
|
100% { color: #fe98bf; }
|
|
}
|