forked from CWAD/circlewithadot.net
First commit
This commit is contained in:
167
releases/style.css
Normal file
167
releases/style.css
Normal file
@@ -0,0 +1,167 @@
|
||||
.hf-container {
|
||||
max-width: 720px;
|
||||
margin: 0 auto 60px;
|
||||
padding: 0 16px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.hf-card {
|
||||
background: rgba(255,255,255,.06);
|
||||
border: 1px solid rgba(255,255,255,.08);
|
||||
box-shadow: 0 12px 40px rgba(0,0,0,.55);
|
||||
border-radius: 16px;
|
||||
padding: 20px;
|
||||
margin: 16px 0;
|
||||
backdrop-filter: blur(2px);
|
||||
}
|
||||
|
||||
.hf-hero {
|
||||
padding-top: 24px;
|
||||
}
|
||||
.hf-cover {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
border-radius: 12px;
|
||||
display: block;
|
||||
margin: 0 auto 14px;
|
||||
}
|
||||
.hf-title {
|
||||
margin: 6px 0 2px;
|
||||
font-size: 34px;
|
||||
font-weight: 800;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
}
|
||||
.hf-subtitle {
|
||||
color: #bbb;
|
||||
font-size: 18px;
|
||||
margin-bottom: 8px;
|
||||
text-align: center;
|
||||
}
|
||||
.hf-blurb {
|
||||
color: #ddd;
|
||||
font-size: 16px;
|
||||
line-height: 1.5;
|
||||
margin: 8px 0 16px;
|
||||
}
|
||||
|
||||
.hf-cta-row {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.btn {
|
||||
display: inline-block;
|
||||
padding: 10px 16px;
|
||||
border-radius: 999px;
|
||||
font-weight: 600;
|
||||
border: 1px solid rgba(255,255,255,.12);
|
||||
color: #fff !important;
|
||||
transition: transform .15s ease, opacity .15s ease, background .15s;
|
||||
}
|
||||
.btn:hover {
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
.btn-red {
|
||||
background: #e53935;
|
||||
border-color: transparent;
|
||||
}
|
||||
.btn-red:hover {
|
||||
background: #ff4444;
|
||||
}
|
||||
.btn-ghost {
|
||||
background: rgba(255,255,255,.06);
|
||||
}
|
||||
.btn-ghost:hover {
|
||||
background: rgba(255,255,255,.12);
|
||||
}
|
||||
|
||||
.hf-embed {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.hf-embed iframe {
|
||||
display: block;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
border: 0;
|
||||
height: 120px;
|
||||
}
|
||||
|
||||
.hf-section-title {
|
||||
margin: 6px 0 14px;
|
||||
font-size: 18px;
|
||||
letter-spacing: .08em;
|
||||
color: #fff;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.hf-link-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 10px;
|
||||
}
|
||||
.hf-link {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
background: rgba(255,255,255,.04);
|
||||
border: 1px solid rgba(255,255,255,.07);
|
||||
border-radius: 10px;
|
||||
padding: 12px 14px;
|
||||
color: #fff !important;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
.hf-link:hover {
|
||||
background: rgba(255,255,255,.10);
|
||||
color: #ff7aa5 !important;
|
||||
}
|
||||
.hf-link img {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
}
|
||||
|
||||
.hf-video {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
padding-top: 56.25%;
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
background: #000;
|
||||
}
|
||||
.hf-video iframe {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.hf-video-container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
border-radius: 12px;
|
||||
background: #000;
|
||||
}
|
||||
.hf-video-el {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.hf-back {
|
||||
text-align: center;
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.hf-title {
|
||||
font-size: 28px;
|
||||
}
|
||||
.hf-link-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user