0% found this document useful (0 votes)
4 views

styles.css

Uploaded by

asadalimanzoor45
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views

styles.css

Uploaded by

asadalimanzoor45
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

body {

font-family: Arial, sans-serif;


margin: 0;
padding: 0;
background-color: #f7f7f7;
color: #333;
}

header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}

nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}

nav ul li {
display: inline;
margin-right: 20px;
}

nav ul li a {
color: #fff;
text-decoration: none;
}

main {
padding: 20px;
}

#products {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
grid-gap: 20px;
}

.product {
border: 1px solid #ccc;
padding: 10px;
text-align: center;
background-color: #fff;
border-radius: 5px;
}

footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}

.title {
color: #fff;
background-color: #007bff;
padding: 10px 20px;
display: inline-block;
border-radius: 5px;
}

#pagination {
text-align: center;
margin-top: 20px;
}

#pagination button {
background-color: #007bff;
color: #fff;
border: none;
padding: 10px 20px;
margin: 0 5px;
cursor: pointer;
}

#pagination button:hover {
background-color: #0056b3;
}

You might also like