Spaces:
Running
Running
File size: 1,815 Bytes
b902873 |
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 |
@font-face {
font-family: "MangaFont";
src: url("../fonts/mangat.ttf") format("truetype");
}
body {
font-family: "MangaFont", Arial, sans-serif;
text-align: center;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
header {
background-color: #4caf50;
color: white;
padding: 10px 0;
}
a {
color: white;
text-decoration: none;
}
.container {
padding: 20px;
}
input[type="file"] {
margin: 20px 0;
padding: 10px;
border: 2px solid #4caf50;
border-radius: 5px;
background-color: #fff;
cursor: pointer;
transition: border-color 0.3s;
}
input[type="file"]:hover {
border-color: #45a049;
}
button {
padding: 10px 20px;
background-color: #4caf50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s, transform 0.3s;
}
button:hover {
background-color: #45a049;
transform: scale(1.05);
}
.spinner {
border: 16px solid #f3f3f3;
border-top: 16px solid #4caf50;
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 2s linear infinite;
margin: 20px auto;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.images-container {
display: flex;
justify-content: space-around;
margin-top: 20px;
}
.image-wrapper {
width: 45%;
}
.image-wrapper h3 {
margin-bottom: 10px;
}
#fileInput::file-selector-button {
padding: 10px 20px;
background-color: #4caf50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s, transform 0.3s;
}
#fileInput::file-selector-button:hover {
background-color: #45a049;
transform: scale(1.05);
}
|