fix colors

This commit is contained in:
sakrecoer 2020-11-17 17:30:56 +01:00
parent 5c7fe4f281
commit ef2affceb9
7 changed files with 9 additions and 103 deletions

View file

@ -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 }}&quest;pk_campaign=homeshare&amp;text={{ page.description | xml_escape }}%20via%20&#64;{{ 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 telegram" alt="Share to telgram" href="https://telegram.me/share/url?url={{ site.url }}{{ page.url }}&quest;pk_campaign=homeshare&amp;text={{ page.description | xml_escape }}%20via%20&#64;{{ 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 }}&quest;pk_campaign=homeshare&amp;title={{ page.description | xml_escape }}%20By%20{{ site.title | xml_escape }}" class="icon smaller fab fa-reddit"><span class="label">Reddit</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 }}&quest;pk_campaign=homeshare&amp;title={{ page.description | xml_escape }}%20By%20{{ site.title | xml_escape }}" class="icon smaller fab fa-reddit"><span class="label">Reddit</span></a>
</ul> </ul>
<br />
<a href="{{ relBase }}/chat/#read" target="_blank" class="button">📢 Chat</a> <a href="{{ relBase }}/chat/#read" target="_blank" class="button">📢 Chat</a>
</div> </div>

View file

@ -138,7 +138,8 @@ a:hover {
width: 100px; width: 100px;
height: 100px; height: 100px;
line-height: 100px; line-height: 100px;
border: 1px solid var(--accent2); border: 1px solid var(--accent1);
color: var(--accent1);
text-align: center; text-align: center;
text-decoration: none; text-decoration: none;
-moz-transition: border var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out; -moz-transition: border var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
@ -148,7 +149,8 @@ a:hover {
} }
.icon:hover { .icon:hover {
border: 1px solid var(--accent1); border: 1px solid var(--accent2);
color: var(--accent2);
} }
.small { .small {

View file

@ -202,6 +202,9 @@ footer {
.icon { .icon {
border: 1px solid var(--bg); border: 1px solid var(--bg);
} }
.icon:hover {
border: 1px solid var(--accent2);
}
.footframe { .footframe {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;

View file

@ -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);}
}
}

View file

@ -17,5 +17,4 @@
@import 'cookies'; @import 'cookies';
@import 'set'; @import 'set';
@import 'svg'; @import 'svg';
@import 'ethos';
@import 'staff'; @import 'staff';

View file

@ -17,7 +17,6 @@
@import 'cookies'; @import 'cookies';
@import 'set'; @import 'set';
@import 'svg'; @import 'svg';
@import 'ethos';
@import 'staff'; @import 'staff';
@import 'noscripts'; @import 'noscripts';