-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Gerardo Montivero
committed
Jun 14, 2023
1 parent
d95b9d9
commit 0a46139
Showing
10 changed files
with
316 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
.square, .btn { | ||
border-radius: 0px!important; | ||
} | ||
|
||
/* -- color classes -- */ | ||
.spacepurplebg { | ||
background-color: #5b4f69; | ||
} | ||
|
||
.white { | ||
color: #fff!important; | ||
} | ||
|
||
div.user-menu-container { | ||
z-index: 10; | ||
background-color: #fff; | ||
margin-top: 20px; | ||
background-clip: padding-box; | ||
opacity: 0.97; | ||
filter: alpha(opacity=97); | ||
-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175); | ||
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175); | ||
} | ||
|
||
div.user-menu-container h4 { | ||
font-weight: 300; | ||
color: #8b8b8b; | ||
} | ||
|
||
div.user-menu-container a, div.user-menu-container .btn { | ||
transition: 1s ease; | ||
} | ||
|
||
div.user-menu-container .thumbnail { | ||
width:100%; | ||
min-height:200px; | ||
border: 0px!important; | ||
padding: 0px; | ||
border-radius: 0; | ||
border: 0px!important; | ||
} | ||
|
||
/* -- The btn stylings for the btn icons -- */ | ||
.btn-label {position: relative;left: -12px;display: inline-block;padding: 6px 12px;background: rgba(0,0,0,0.15);border-radius: 3px 0 0 3px;} | ||
.btn-labeled {padding-top: 0;padding-bottom: 0;} | ||
|
||
/* -- Custom classes for the snippet, won't effect any existing bootstrap classes of your site, but can be reused. -- */ | ||
|
||
.user-pad { | ||
padding: 20px 25px; | ||
} | ||
|
||
.no-pad { | ||
padding-right: 0; | ||
padding-left: 0; | ||
padding-bottom: 0; | ||
} | ||
|
||
.user-details { | ||
background: #eee; | ||
min-height: 333px; | ||
} | ||
|
||
.user-image { | ||
max-height:200px; | ||
overflow:hidden; | ||
} | ||
|
||
.overview h3 { | ||
font-weight: 300; | ||
margin-top: 15px; | ||
margin: 10px 0 0 0; | ||
} | ||
|
||
.overview h4 { | ||
font-weight: bold!important; | ||
font-size: 40px; | ||
margin-top: 0; | ||
} | ||
|
||
.square, .btn { | ||
border-radius: 0px!important; | ||
} | ||
|
||
/* -- media query for user profile image -- */ | ||
@media (max-width: 767px) { | ||
.user-image { | ||
max-height: 400px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
.algolia-autocomplete { | ||
width: 100%; | ||
} | ||
.algolia-autocomplete .aa-input, .algolia-autocomplete .aa-hint { | ||
width: 100%; | ||
} | ||
.algolia-autocomplete .aa-hint { | ||
color: #999; | ||
} | ||
.algolia-autocomplete .aa-dropdown-menu { | ||
width: 100%; | ||
background-color: #fff; | ||
border: 1px solid #999; | ||
border-top: none; | ||
} | ||
.algolia-autocomplete .aa-dropdown-menu .aa-suggestion { | ||
cursor: pointer; | ||
padding: 5px 4px; | ||
} | ||
.algolia-autocomplete .aa-dropdown-menu .aa-suggestion.aa-cursor { | ||
background-color: #B2D7FF; | ||
} | ||
.algolia-autocomplete .aa-dropdown-menu .aa-suggestion em { | ||
font-weight: bold; | ||
font-style: normal; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
@import './helper/variables'; | ||
|
||
@import '~bootstrap'; | ||
@import '~font-awesome'; | ||
|
||
@import './layout/header'; | ||
@import './layout/footer'; | ||
|
||
@import './components/ad'; | ||
@import './components/articles'; | ||
@import './components/profile'; | ||
@import './components/sortable'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
@import './helper/variables'; | ||
|
||
/* ARTICLE SHOW PAGE */ | ||
|
||
.show-article-container { | ||
width: 100%; | ||
background-color: #fff; | ||
} | ||
|
||
.show-article-container.show-article-container-border-green { | ||
border-top: 3px solid green; | ||
border-radius: 3px; | ||
} | ||
|
||
.show-article-img { | ||
width: 250px; | ||
height: auto; | ||
border-radius: 5px; | ||
} | ||
|
||
.show-article-title { | ||
font-size: 2em; | ||
} | ||
|
||
.like-article, .like-article:hover { | ||
color: red; | ||
text-decoration: none; | ||
} | ||
|
||
@media (max-width: 991px) { | ||
.show-article-title { | ||
font-size: 1.5em; | ||
} | ||
|
||
.show-article-title-container { | ||
max-width: 220px; | ||
} | ||
} | ||
|
||
.article-text { | ||
margin-top: 20px; | ||
} | ||
|
||
.share-icons i { | ||
font-size: 1.5em; | ||
} | ||
|
||
.comment-container { | ||
max-width: 600px; | ||
} | ||
|
||
.comment-img { | ||
width: 50px; | ||
height: auto; | ||
border: 1px solid darkgray; | ||
} | ||
|
||
.commenter-name { | ||
font-weight: bold; | ||
} | ||
|
||
.comment-form { | ||
min-width: 500px; | ||
} | ||
|
||
@media (max-width: 767px) { | ||
.comment-form { | ||
min-width: 260px; | ||
} | ||
.comment-container { | ||
max-width: 280px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
@import "~foundation-emails/dist/foundation-emails.css"; | ||
|
||
body { | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f3f3f3; | ||
font-family: Helvetica, Arial, sans-serif; | ||
} | ||
h1 { | ||
background-color: #264459; | ||
color: #ffffff; | ||
/*padding: 30px 0 50px 0;*/ | ||
font-weight: normal; | ||
} | ||
hr { | ||
border: none; | ||
border-top: 3px solid #264459; | ||
margin: 20px; | ||
} | ||
.welcome { | ||
background-color: #264459; | ||
} | ||
.bottom { | ||
background-color: #efefee; | ||
} | ||
.logo { | ||
width: 100%; | ||
} | ||
.text-center { | ||
text-align: center; | ||
} | ||
table.button a { | ||
background-color: #264459; | ||
} | ||
table.button table td { | ||
background-color: #264459; | ||
border: 2px solid #264459; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
body { | ||
background-color: #fff; | ||
} | ||
|
||
.form-signin { | ||
width: 100%; | ||
max-width: 330px; | ||
padding: 15px; | ||
margin: auto; | ||
margin-top: 50px; | ||
} | ||
|
||
.form-signin .checkbox { | ||
font-weight: 400; | ||
} | ||
|
||
.form-signin .form-control { | ||
position: relative; | ||
box-sizing: border-box; | ||
height: auto; | ||
padding: 10px; | ||
font-size: 16px; | ||
} | ||
|
||
.form-signin .form-control:focus { | ||
z-index: 2; | ||
} | ||
|
||
.form-signin input[type="email"] { | ||
margin-bottom: -1px; | ||
border-bottom-right-radius: 0; | ||
border-bottom-left-radius: 0; | ||
} | ||
|
||
.form-signin input[type="password"] { | ||
margin-bottom: 10px; | ||
border-top-left-radius: 0; | ||
border-top-right-radius: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{% apply inky_to_html|inline_css(encore_entry_css_source('email')) %} | ||
<container> | ||
<row class="header"> | ||
<columns> | ||
<a href="{{ url('app_homepage') }}"> | ||
<img src="{{ email.image('@images/email/logo.png') }}" class="logo" alt="SpaceBar Logo"> | ||
</a> | ||
</columns> | ||
</row> | ||
|
||
{% block content %} | ||
{% endblock %} | ||
|
||
<row class="footer"> | ||
<columns> | ||
<p>Cheers,</p> | ||
<p>Your friendly <em>Space Bar Team</em></p> | ||
</columns> | ||
</row> | ||
<row class="bottom"> | ||
<columns> | ||
<center> | ||
<spacer size="20"></spacer> | ||
<div> | ||
Sent with ❤️ from the friendly folks at The Space Bar | ||
</div> | ||
</center> | ||
</columns> | ||
</row> | ||
</container> | ||
{% endapply %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters