parent
2088859911
commit
b63a7cf0d7
@ -0,0 +1,215 @@
|
|||||||
|
/*Fonts CSS */
|
||||||
|
|
||||||
|
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
|
||||||
|
|
||||||
|
/*Default CSS*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*Ace CSS */
|
||||||
|
|
||||||
|
.ace{
|
||||||
|
width: 45%;
|
||||||
|
height: 90%;
|
||||||
|
max-height: 100%;
|
||||||
|
margin-bottom: 0;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Main Button Css */
|
||||||
|
|
||||||
|
.buttons{
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.compiler_class .buttons div{
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.buttons .btn{
|
||||||
|
position: relative;
|
||||||
|
width: 120px;
|
||||||
|
height: 60px;
|
||||||
|
display: inline-block;
|
||||||
|
background: transparent;
|
||||||
|
margin: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.buttons .btn:before, .buttons .btn:after
|
||||||
|
{
|
||||||
|
content:'';
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
transition: 0.5s;
|
||||||
|
background: #f00
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.buttons .btn:nth-child(1):before, .buttons .btn:nth-child(1):after
|
||||||
|
{
|
||||||
|
background: linear-gradient(45deg, #00ccff, #0e1538, #d400d4)
|
||||||
|
}
|
||||||
|
|
||||||
|
.buttons .btn:nth-child(2):before, .buttons .btn:nth-child(2):after
|
||||||
|
{
|
||||||
|
background: linear-gradient(45deg, #d400d4, #0e1538, #fb5942);
|
||||||
|
}
|
||||||
|
|
||||||
|
.buttons .btn:hover:before
|
||||||
|
{
|
||||||
|
inset: -3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.buttons .btn:hover:after
|
||||||
|
{
|
||||||
|
inset: -3px;
|
||||||
|
filter: blur(10px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.buttons .btn span{
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
display: inline-block;
|
||||||
|
background: #0e1538;
|
||||||
|
z-index: 10;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 1.2em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
color: #fff;
|
||||||
|
border: 1px solid #040a29;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.buttons .btn span::before{
|
||||||
|
content:'';
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: -50%;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: rgba(255,255,255,0.075);
|
||||||
|
transform: skew(25deg)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.buttons .btn .noAnimation {
|
||||||
|
animation: none;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Modal CSS */
|
||||||
|
|
||||||
|
.modal-container {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 10;
|
||||||
|
|
||||||
|
display: none;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: var(--m-background);
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-container:target {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: flex-end;
|
||||||
|
width: 30%;
|
||||||
|
height: 35%;
|
||||||
|
padding: 10px 0;
|
||||||
|
border-radius: .8rem;
|
||||||
|
|
||||||
|
color: aliceblue;
|
||||||
|
background: var(--background);
|
||||||
|
box-shadow: var(--m-shadow, .4rem .4rem 8.2rem .2rem) var(--shadow-1);
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Modal H1 */
|
||||||
|
|
||||||
|
.modal #containerResult{
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
width: 80%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Modal Container Buttons */
|
||||||
|
|
||||||
|
.modal .buttons{
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-end;
|
||||||
|
height: 100%;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal .buttons #top{
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
align-items: flex-start;
|
||||||
|
width: auto;
|
||||||
|
height: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal .buttons #bottom{
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: flex-end;
|
||||||
|
width: auto;
|
||||||
|
height: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Modal buttons btn */
|
||||||
|
|
||||||
|
.modal .buttons .btn{
|
||||||
|
width: 30px;
|
||||||
|
height: 30px;
|
||||||
|
margin : 0 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal .buttons #bottom{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal .buttons #fleche{
|
||||||
|
display: none;
|
||||||
|
width: 75px;
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal .buttons .btn span{
|
||||||
|
background: #06124b;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal .buttons #bottom .btn:nth-child(1):before, .modal .buttons #bottom .btn:nth-child(1):after
|
||||||
|
{
|
||||||
|
background: linear-gradient(45deg, #d400d4, #0e1538, #fb5942);
|
||||||
|
}
|
Loading…
Reference in new issue