app_web / static /css /style1.css
Shayak03tintcsbs's picture
Upload 57 files
2fd9844
raw
history blame contribute delete
709 Bytes
/* styles.css */
body {
font-family: Arial, sans-serif;
background-image: url('../back1.jpg'); /* Change the path to your image */
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
color: #333;
}
img {
max-width: 100%;
height: auto;
display: block;
margin: 20px auto;
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 20px;
padding: 10px;
border: 1px solid #ccc;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h2 {
margin-top: 20px;
color: #555;
}