82 lines
1.2 KiB
CSS
82 lines
1.2 KiB
CSS
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
background: #fafafa;
|
|
color: #222;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
margin: 24px 0 12px 0;
|
|
}
|
|
|
|
small {
|
|
display: block;
|
|
text-align: center;
|
|
margin: 0 0 18px 0;
|
|
color: #555;
|
|
font-size: 0.98em;
|
|
}
|
|
|
|
h2 {
|
|
margin-top: 32px;
|
|
margin-bottom: 8px;
|
|
text-align: center;
|
|
}
|
|
|
|
section {
|
|
margin: 0 auto 24px auto;
|
|
max-width: 700px;
|
|
}
|
|
|
|
article {
|
|
border: 1px solid #ddd;
|
|
border-radius: 6px;
|
|
padding: 12px;
|
|
margin: 12px 0;
|
|
background: #fff;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
th, td {
|
|
border: 1px solid #ccc;
|
|
padding: 6px 8px;
|
|
text-align: center;
|
|
}
|
|
|
|
form label {
|
|
display: block;
|
|
margin: 6px 0;
|
|
}
|
|
|
|
input[type="number"], input[type="text"], select {
|
|
padding: 2px 4px;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
button {
|
|
margin-top: 6px;
|
|
padding: 4px 10px;
|
|
border: 1px solid #bbb;
|
|
border-radius: 3px;
|
|
background: #f0f0f0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover {
|
|
background: #e0e0e0;
|
|
}
|
|
|
|
#feedback-list .testimonial {
|
|
background: #f9f9f9;
|
|
border: 1px solid #eee;
|
|
border-radius: 4px;
|
|
margin: 8px 0;
|
|
padding: 8px;
|
|
} |