103 lines
1.7 KiB
CSS
103 lines
1.7 KiB
CSS
/* static/uploads.css */
|
|
body {
|
|
background-color: #f0f4f8;
|
|
font-family: Arial, sans-serif;
|
|
color: #333;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.container {
|
|
background-color: #ffffff;
|
|
padding: 30px 40px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
|
max-width: 700px;
|
|
width: 100%;
|
|
}
|
|
|
|
h1 {
|
|
color: #007acc;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
h2 {
|
|
color: #333;
|
|
margin: 15px 0;
|
|
font-size: 1.2em;
|
|
border-bottom: 2px solid #007acc;
|
|
display: inline-block;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
padding: 10px;
|
|
margin: 5px 0;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
background-color: #f9f9f9;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
li:nth-child(odd) {
|
|
background-color: #eef3f7;
|
|
}
|
|
|
|
button {
|
|
background-color: #007acc;
|
|
color: #fff;
|
|
border: none;
|
|
padding: 5px 10px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #005f99;
|
|
}
|
|
|
|
button:focus {
|
|
outline: none;
|
|
box-shadow: 0 0 5px #007acc;
|
|
}
|
|
|
|
a {
|
|
color: #007acc;
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
a:hover {
|
|
color: #005f99;
|
|
}
|
|
|
|
.back-link {
|
|
display: inline-block;
|
|
margin-top: 20px;
|
|
background-color: #007acc;
|
|
color: #fff;
|
|
padding: 10px 20px;
|
|
text-decoration: none;
|
|
border-radius: 4px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.back-link:hover {
|
|
background-color: #005f99;
|
|
}
|
|
|