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

cssas

The document contains CSS styles for a web page, defining the layout and appearance of various elements such as body, container, headings, forms, inputs, buttons, and tables. It includes styles for responsiveness, padding, margins, and hover effects. The overall design aims for a clean and user-friendly interface.
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

cssas

The document contains CSS styles for a web page, defining the layout and appearance of various elements such as body, container, headings, forms, inputs, buttons, and tables. It includes styles for responsiveness, padding, margins, and hover effects. The overall design aims for a clean and user-friendly interface.
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

body {

font-family: Arial, sans-serif;


background-color: #f4f4f4;
margin: 0;
padding: 0;
}

.container {
width: 80%;
max-width: 1000px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
text-align: center;
}

form {
margin-bottom: 20px;
}

label {
display: block;
margin-top: 10px;
}

input {
width: 100%;
padding: 8px;
margin-top: 5px;
margin-bottom: 15px;
border: 1px solid #ddd;
border-radius: 4px;
}

button {
width: 100%;
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}

button:hover {
background-color: #45a049;
}

table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
}

th {
background-color: #f2f2f2;
}

You might also like