fix colors
This commit is contained in:
parent
5c7fe4f281
commit
ef2affceb9
|
@ -7,4 +7,4 @@ border-alt_rgba: 'rgba(0, 0, 0, 0.75)'
|
|||
accent1_rgba: 'rgb(56, 255, 89)'
|
||||
accent1-alt_rgba: 'rgba(56, 255, 89, 0.75)'
|
||||
accent2_rgba: 'rgb(233, 157, 254)'
|
||||
accent2-alt_rgba: 'rgba(233, 157, 254, 0.75)'
|
||||
accent2-alt_rgba: 'rgba(233, 157, 254, 0.75)'
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
<a target="_blank" rel="nofollow noopener" title="Share to telegram" alt="Share to telgram" href="https://telegram.me/share/url?url={{ site.url }}{{ page.url }}?pk_campaign=homeshare&text={{ page.description | xml_escape }}%20via%20@{{ site.social.usernames.telegram }}" class="icon smaller fab fa-telegram"><span class="label ">Telegram</span></a>
|
||||
<a target="_blank" rel="nofollow noopener" title="Share to reddit" alt="Share to reddit" href="https://reddit.com/submit/?url={{ site.url }}{{ page.url }}?pk_campaign=homeshare&title={{ page.description | xml_escape }}%20By%20{{ site.title | xml_escape }}" class="icon smaller fab fa-reddit"><span class="label">Reddit</span></a>
|
||||
</ul>
|
||||
<br />
|
||||
<a href="{{ relBase }}/chat/#read" target="_blank" class="button">📢 Chat</a>
|
||||
|
||||
</div>
|
||||
|
|
|
@ -138,7 +138,8 @@ a:hover {
|
|||
width: 100px;
|
||||
height: 100px;
|
||||
line-height: 100px;
|
||||
border: 1px solid var(--accent2);
|
||||
border: 1px solid var(--accent1);
|
||||
color: var(--accent1);
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
-moz-transition: border var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
|
||||
|
@ -148,7 +149,8 @@ a:hover {
|
|||
|
||||
}
|
||||
.icon:hover {
|
||||
border: 1px solid var(--accent1);
|
||||
border: 1px solid var(--accent2);
|
||||
color: var(--accent2);
|
||||
|
||||
}
|
||||
.small {
|
||||
|
|
|
@ -202,6 +202,9 @@ footer {
|
|||
.icon {
|
||||
border: 1px solid var(--bg);
|
||||
}
|
||||
.icon:hover {
|
||||
border: 1px solid var(--accent2);
|
||||
}
|
||||
.footframe {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
|
|
@ -1,98 +0,0 @@
|
|||
#ethossection {
|
||||
padding: 80px 40px;
|
||||
.ethos-flex {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
max-width: var(--max-width);
|
||||
margin: auto;
|
||||
|
||||
|
||||
}
|
||||
.ethos {
|
||||
flex: 1 1 320px;
|
||||
min-width: 450px;
|
||||
height: 100%;
|
||||
|
||||
flex-direction: row;
|
||||
-webkit-transition: all var(--anim-speed) ease-in;
|
||||
-moz-transition: all var(--anim-speed) ease-in;
|
||||
-ms-transition: all var(--anim-speed) ease-in;
|
||||
transition: all var(--anim-speed) ease-in;
|
||||
margin-top: 40px;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
align-self: baseline;
|
||||
justify-content: flex-start;
|
||||
.mobile-hide{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.cartouche, {
|
||||
background-color: var(--bg);
|
||||
width: 100%;
|
||||
height: unset;
|
||||
margin: 20px 0 20px 20px;
|
||||
display: block;
|
||||
border-radius: var(--border-radius);
|
||||
|
||||
}
|
||||
|
||||
.icon {
|
||||
flex: 0 0 100px;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 200px;
|
||||
margin: 20px 20px 20px 0;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
.ethos:nth-child(odd) {
|
||||
.cartouche {
|
||||
padding-right: 20px;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 769px) {
|
||||
.ethos {
|
||||
flex: 0 0 auto;
|
||||
flex-wrap: wrap;
|
||||
min-width: unset;
|
||||
max-width: unset;
|
||||
justify-content: space-between;
|
||||
margin: 20px;
|
||||
.cartouche {
|
||||
display: none;
|
||||
}
|
||||
.icon {
|
||||
margin:0;
|
||||
flex: 0 0 70px;
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
border-radius: 200px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.st1 {
|
||||
fill:var(--accent2);
|
||||
-webkit-transition: all var(--anim-speed) ease-in;
|
||||
-moz-transition: all var(--anim-speed) ease-in;
|
||||
-ms-transition: all var(--anim-speed) ease-in;
|
||||
transition: all var(--anim-speed) ease-in;
|
||||
}
|
||||
.st1:hover {
|
||||
fill:var(--accent1);
|
||||
}
|
||||
|
||||
.st2 {animation: col 15s ease-in-out infinite;}
|
||||
|
||||
@keyframes col {
|
||||
0% {fill:var(--accent2);}
|
||||
50% {fill:var(--accent1);}
|
||||
100% {fill:var(--accent2);}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -17,5 +17,4 @@
|
|||
@import 'cookies';
|
||||
@import 'set';
|
||||
@import 'svg';
|
||||
@import 'ethos';
|
||||
@import 'staff';
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
@import 'cookies';
|
||||
@import 'set';
|
||||
@import 'svg';
|
||||
@import 'ethos';
|
||||
@import 'staff';
|
||||
@import 'noscripts';
|
||||
|
||||
|
|
Loading…
Reference in a new issue