Files
RTA-test/style.css
vista-man 526706ba91 f
2025-01-25 21:40:57 +01:00

50 lines
913 B
CSS

body {
font-family: sans-serif;
margin: 20px;
background-color: #f0f0f0;
background-image: linear-gradient(to bottom right, #f0f0f0, #e0e0e0, #c6c6c6, #8a09e0, #666666, #333333, #000000);
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f8f8f8;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1), 0 0 10px rgba(255, 255, 255, 0.2);
}
h1 {
color: #333;
text-align: center;
margin-bottom: 30px;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
h2 {
color: #007bff;
margin-top: 40px;
border-bottom: 2px solid #007bff;
padding-bottom: 5px;
}
h1, h2 {
background-image: none;
color: #007bff;
}
p {
color: #555;
line-height: 1.6;
text-indent: 20px;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #0056b3;
}