File size: 3,159 Bytes
c69a273 43511ce c69a273 43511ce c69a273 |
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 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
/* Reset and global styles */
* {
margin: 0;
box-sizing: border-box;
background-color: #001220 !important;
}
html,
body {
height: 100vh !important;
width: 100%;
overflow-x: hidden;
padding: 0 !important;
}
/* Title Styling */
.title {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 2em; /* Scalable font size */
text-align: center;
background: linear-gradient(to right, #16f0da 0%, #ff93ed 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin: 0 !important;
}
/* Upload Line */
.upload_line {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 1rem;
text-align: center;
color: white;
margin: 1em 0;
}
@keyframes blink {
25% {
opacity: 0.5;
}
50% {
opacity: 0;
}
75% {
opacity: 0.5;
}
}
/* Base styles for magnifying glasses */
.detectiveMag1,
.detectiveMag2,
.detectiveMag3 {
position: fixed;
width: 10vw;
max-width: 100px;
max-height: 100px;
animation: blink 6s infinite linear;
}
.detectiveMag2 {
animation-delay: 2s;
}
.detectiveMag3 {
animation-delay: 4s;
}
/* Result Styling */
.result {
color: rgb(179, 217, 253);
font-size: 1.5rem;
z-index: 1;
text-align: center;
margin-top: 1.5em;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.resultword {
text-transform: uppercase;
background-image: linear-gradient(
-225deg,
#aae2e5 0%,
#edaee8 29%,
#421f7e 67%,
#ff0099 100%
);
background-size: auto auto;
background-clip: border-box;
background-size: 200% auto;
color: #fff;
background-clip: text;
text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: textclip 2s linear;
display: inline-block;
font-size: 32px;
}
.prediction {
padding-top: 0 !important;
margin-top: 0 !important;
font-size: 14px;
}
@keyframes textclip {
to {
background-position: 200% center;
}
}
/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
.title {
font-size: 1.8em;
}
.upload_line {
font-size: 0.9rem;
}
.detectiveMag1,
.detectiveMag2,
.detectiveMag3 {
width: 12vw; /* Slightly larger magnifying glasses */
}
.result {
font-size: 1.2rem;
}
}
@media (max-width: 924px) {
.detectiveMag1,
.detectiveMag2,
.detectiveMag3 {
width: 10vw; /* Larger magnifying glasses */
background-color: transparent !important;
}
}
@media (max-width: 768px) {
.title {
font-size: 1.5em;
}
.upload_line {
font-size: 0.8rem;
}
.detectiveMag1,
.detectiveMag2,
.detectiveMag3 {
width: 15vw; /* Larger magnifying glasses */
background-color: transparent !important;
}
.result {
font-size: 1rem;
}
}
@media (max-width: 480px) {
.title {
font-size: 1.2em;
}
.upload_line {
font-size: 0.7rem;
}
.detectiveMag1,
.detectiveMag2,
.detectiveMag3 {
width: 20vw; /* Even larger magnifying glasses */
}
.result {
font-size: 0.9rem;
}
}
@media (max-width: 390px) {
.detectiveMag1,
.detectiveMag2,
.detectiveMag3 {
visibility: hidden;
}
}
|