CSS Editor
/* Sample Style Sheet with Common Tags */ body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; color: #555; padding: 20px; background: #fefefe; } header { background: #002147; color: white; padding: 0.5rem; font-size: 2.5rem; font-weight: bold; text-align: center; } header:hover { background: #dddddd; color: black; } h1 { color: #000000; font-weight: bold; text-align: center; text-decoration: underline; } h2 { color: #333; } p { line-height: 1.6; color: #555; font-style: italic; } a { color: red; text-decoration: none; } a:hover { text-decoration: underline; } button { background: #002147; color: white; border: none; font-weight: bold; padding: 10px 15px; cursor: pointer; border-radius: 10px; cursor: pointer; } button:hover { background: #dddddd; color: black; } ul { list-style-type: square; } ol { font-style: italic; } table { width: 100%; background: #002147; color: white; border-collapse: separate; border-radius: 12px; overflow: hidden; } table, td { border: 1px solid #000; padding: 8px; } th{ background: #002147; color: white; font-weight: bold; font-size: 1.5rem; } td:hover { background: #dddddd; color: black; }
Live Preview