pixel-editor/css/pixel-editor-splash-page.scss

39 lines
550 B
SCSS
Raw Permalink Normal View History

2020-04-16 21:21:34 +03:00
$base-color: #332f35;
2019-03-27 02:20:54 +03:00
.pixel-editor-screenshot {
box-shadow: 0px 10px 40px 0px rgba(0,0,0,0.45);
margin: auto;
display: block;
max-width: 100%;
border: solid 5px white;
}
2020-04-16 21:21:34 +03:00
hr {
margin: 4em 0 2em;
}
.contributors {
display: flex;
flex-wrap: wrap;
a {
display: flex;
flex-direction: column;
font-size: 0.7em;
text-align: center;
padding: 1em;
align-items: center;
color: lighten($base-color,50%);
img {
width: 60px;
height: 60px;
}
2019-03-27 02:20:54 +03:00
2020-04-16 21:21:34 +03:00
&:hover {
background: darken($base-color,5%);
color: white;
}
}
}