Template:Newsletter/styles.css: Difference between revisions
Template page
More actions
Content deleted Content added
LordSkorne7 (talk | contribs) No edit summary |
LordSkorne7 (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
/* Newsletter Container */ |
|||
.amaranth-legacy-newsletter { |
.amaranth-legacy-newsletter { |
||
background: transparent; |
background: transparent; |
||
| Line 7: | Line 8: | ||
margin: auto; |
margin: auto; |
||
box-shadow: none; |
box-shadow: none; |
||
font-family: |
font-family: Arial, sans-serif; |
||
} |
} |
||
/* Header Title */ |
|||
.amaranth-legacy-newsletter-header { |
.amaranth-legacy-newsletter-header { |
||
display: flex; |
display: flex; |
||
| Line 18: | Line 20: | ||
color: #60add5; |
color: #60add5; |
||
text-shadow: none; |
text-shadow: none; |
||
letter-spacing: 3px; |
|||
} |
} |
||
/* Subtitle Text */ |
|||
.amaranth-legacy-newsletter-subtitle { |
.amaranth-legacy-newsletter-subtitle { |
||
text-align: center; |
text-align: center; |
||
| Line 27: | Line 31: | ||
} |
} |
||
/* Overview Text */ |
|||
.amaranth-legacy-newsletter-overview { |
.amaranth-legacy-newsletter-overview { |
||
text-align: center; |
text-align: center; |
||
| Line 34: | Line 39: | ||
} |
} |
||
/* Divider Line */ |
|||
.amaranth-legacy-newsletter- |
.amaranth-legacy-newsletter-divider { |
||
border: none; |
border: none; |
||
border-top: 2px solid #60add5; |
border-top: 2px solid #60add5; |
||
| Line 40: | Line 46: | ||
} |
} |
||
/* Section Grid Layout */ |
|||
.amaranth-legacy-newsletter-grid { |
.amaranth-legacy-newsletter-grid { |
||
display: grid; |
display: grid; |
||
| Line 46: | Line 53: | ||
} |
} |
||
/* Section Title */ |
|||
.amaranth-legacy-newsletter-section-title { |
.amaranth-legacy-newsletter-section-title { |
||
font-size: 1.5em; |
font-size: 1.5em; |
||
color: #60add5; |
|||
font-weight: bold; |
font-weight: bold; |
||
margin-top: 2em; |
margin-top: 2em; |
||
} |
} |
||
/* Section HR */ |
|||
.amaranth-legacy-newsletter-section- |
.amaranth-legacy-newsletter-section-hr { |
||
border: none; |
border: none; |
||
border-top: 1px solid #60add5; |
border-top: 1px solid #60add5; |
||
Revision as of 20:42, May 14, 2025
/* Newsletter Container */
.amaranth-legacy-newsletter {
background: transparent;
border: 4px solid #60add5;
padding: 1.5em;
color: #60add5;
max-width: 1100px;
margin: auto;
box-shadow: none;
font-family: Arial, sans-serif;
}
/* Header Title */
.amaranth-legacy-newsletter-header {
display: flex;
justify-content: center;
align-items: center;
font-size: 2em;
font-weight: bold;
color: #60add5;
text-shadow: none;
letter-spacing: 3px;
}
/* Subtitle Text */
.amaranth-legacy-newsletter-subtitle {
text-align: center;
font-size: 1em;
margin-top: 0.2em;
font-weight: bold;
}
/* Overview Text */
.amaranth-legacy-newsletter-overview {
text-align: center;
font-size: 1.2em;
margin-top: 1em;
margin-bottom: 1em;
}
/* Divider Line */
.amaranth-legacy-newsletter-divider {
border: none;
border-top: 2px solid #60add5;
margin: 1.5em 0;
}
/* Section Grid Layout */
.amaranth-legacy-newsletter-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2em;
}
/* Section Title */
.amaranth-legacy-newsletter-section-title {
font-size: 1.5em;
color: #60add5;
font-weight: bold;
margin-top: 2em;
}
/* Section HR */
.amaranth-legacy-newsletter-section-hr {
border: none;
border-top: 1px solid #60add5;
margin: 0.5em 0;
}