feather/style.css

82 lines
1.2 KiB
CSS
Raw Normal View History

2017-05-13 02:32:49 +03:00
.rubik {
font-family: "Rubik", sans-serif;
}
.font-smoothing {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
2017-05-31 04:23:18 +03:00
.bg-accent {
2017-05-31 19:52:06 +03:00
background-color: #0055ff;
2017-05-31 04:23:18 +03:00
}
2017-05-30 03:05:49 +03:00
.button {
2017-05-13 02:32:49 +03:00
display: inline-block;
padding: 1rem 2rem;
2017-05-28 07:22:58 +03:00
font-size: 1rem;
line-height: 1.25;
2017-05-13 02:32:49 +03:00
text-align: center;
text-decoration: none;
}
2017-05-30 03:05:49 +03:00
.lh-none {
line-height: 0;
2017-05-13 02:32:49 +03:00
}
2017-05-30 03:05:49 +03:00
.ellipse {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2017-05-23 23:59:21 +03:00
}
2017-05-30 03:05:49 +03:00
.svg [stroke] {
stroke: currentColor;
2017-05-13 02:32:49 +03:00
}
2017-05-30 03:05:49 +03:00
.svg [fill]:not([fill=none]) {
fill: currentColor;
2017-05-31 04:23:18 +03:00
}
.icon-grid {
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin: 0 -0.5rem -1rem;
}
.icon-grid li {
width: 100%;
padding: 0 0.5rem 1rem;
}
/* medium breakpoint */
@media (min-width: 30em) {
.icon-grid li {
width: 50%;
}
}
/* large breakpoint */
@media (min-width: 60em) {
.icon-grid li {
width: 25%;
}
}
/* if supported, use grid layout */
@supports (display: grid) {
.icon-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
grid-gap: 1rem;
margin: 0;
}
/* override default styles */
.icon-grid li {
width: 100%;
padding: 0;
}
}