Spaces:
Sleeping
Sleeping
File size: 2,618 Bytes
ff53531 2dff39d ff53531 af22236 2dff39d af22236 6604d57 af22236 df42293 af22236 |
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 135 136 137 138 139 140 |
body {
font-family: 'Poppins', sans-serif;
background-color: #121212;
color: #ffffff;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.main-container {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 30px;
width: 80%;
max-width: 1000px;
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 15px;
box-shadow: 0 8px 16px rgba(0, 255, 255, 0.2);
backdrop-filter: blur(10px);
}
.left-section {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
canvas {
border-radius: 15px;
border: 3px solid rgba(0, 255, 255, 0.4);
background-color: white;
box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
transition: transform 0.3s ease-in-out;
}
canvas:hover {
transform: scale(1.02);
box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}
h1 {
font-size: 24px;
text-transform: uppercase;
letter-spacing: 2px;
color: #0ff;
text-shadow: 0 0 10px #0ff;
text-align: center;
}
table {
width: 100%;
margin-top: 15px;
border-collapse: collapse;
}
th, td {
padding: 10px;
text-align: left;
border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
th {
font-size: 16px;
text-transform: uppercase;
letter-spacing: 1px;
color: #0ff;
}
tr:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.probability-bar {
height: 12px;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 5px;
overflow: hidden;
position: relative;
}
.probability-fill {
height: 100%;
background: linear-gradient(90deg, #ff00ff, #0ff);
transition: width 0.4s ease-in-out;
}
button, .references img {
display: block;
margin: 20px auto 0;
padding: 12px 20px;
font-size: 16px;
font-weight: bold;
text-transform: uppercase;
color: #fff;
background: linear-gradient(90deg, #ff00ff, #0ff);
border: none;
border-radius: 25px;
cursor: pointer;
transition: 0.3s ease-in-out;
box-shadow: 0 4px 10px rgba(255, 0, 255, 0.5);
}
button:hover {
transform: scale(1.05);
box-shadow: 0 6px 15px rgba(255, 0, 255, 0.8);
}
button:active {
transform: scale(0.95);
}
@media (max-width: 768px) {
.main-container {
grid-template-columns: 1fr;
}
}
.references {
width: 100%;
position: relative;
}
.references div{
position: absolute;
right: 20px;
display: flex;
gap: 15px;
}
.references img{
padding: 0;
width: 40px;
} |