Spaces:
Runtime error
Runtime error
File size: 2,714 Bytes
38e70c4 43f35d8 38e70c4 43f35d8 38e70c4 43f35d8 38e70c4 43f35d8 cef1f1e b1bc81d cef1f1e 1bddee8 43f35d8 38e70c4 43f35d8 38e70c4 b1bc81d 38e70c4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
html {
/*color: white;*/
/*background-color: rgb(50, 50, 50);*/
font-family: Source Sans Pro,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
line-height: 1.5;
}
body {
display: flex;
align-items: center;
flex-direction: column;
}
button {
height: 90px;
width: 200px;
margin-top: 20px;
cursor: pointer;
background-color: rgb(220, 220, 240);
border: none;
border-radius: 10px;
border-bottom: 3px solid rgb(200, 200, 220);
border-right: 3px solid rgb(200, 200, 220);
transition: all 0.2s ease;
}
button:hover {
background-color: rgb(240, 220, 220);
border-bottom: 3px solid rgb(220, 200, 200);
border-right: 3px solid rgb(220, 200, 200);
transition: all 0.2s ease;
}
.graphs {
margin: 20px;
display: flex;
flex-direction: row;
justify-content: center;
width: 100%;
}
.option-div {
border-radius: 10px;
border-color: rgb(180, 180, 200);
border-style: solid;
border-width: 2px 4px 4px 2px;
margin: 14px 0;
padding: 5px;
}
.option-div > div {
margin-left: 20px;
}
.warning-div {
background-color: rgb(255, 230, 164);
border-radius: 10px;
border-bottom: 3px solid rgb(235, 210, 144);
border-right: 3px solid rgb(235, 210, 144);
margin: 10px;
padding: 20px;
}
.submit {
margin-bottom: 50px;
}
.graphs > div {
margin: 20px;
width: 300px;
padding: 30px 40px;
background-color: rgb(220, 220, 240);
border-bottom: 3px solid rgb(200, 200, 220);
border-right: 3px solid rgb(200, 200, 220);
border-radius: 10px;
line-height: 30px;
}
.graphs > div > h3 {
font-weight: 400;
text-decoration: underline;
}
.lds-ripple {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
}
.lds-ripple div {
position: absolute;
border: 4px solid #000;
opacity: 1;
border-radius: 50%;
animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple .dark-theme div {
border: 4px solid #fff;
}
.lds-ripple div:nth-child(2) {
animation-delay: -0.5s;
}
@keyframes lds-ripple {
0% {
top: 36px;
left: 36px;
width: 0;
height: 0;
opacity: 0;
}
4.9% {
top: 36px;
left: 36px;
width: 0;
height: 0;
opacity: 0;
}
5% {
top: 36px;
left: 36px;
width: 0;
height: 0;
opacity: 1;
}
100% {
top: 0px;
left: 0px;
width: 72px;
height: 72px;
opacity: 0;
}
}
|