feather/style.css

54 lines
809 B
CSS
Raw Normal View History

2017-05-13 03:41:15 +03:00
:root {
2017-05-24 09:41:18 +03:00
--accent: #4353FF;
2017-05-30 03:26:25 +03:00
--accent-darker: #3E4DED;
2017-05-13 03:41:15 +03:00
}
.bg-accent {
background-color: var(--accent);
}
2017-05-30 03:26:25 +03:00
.hover-bg-accent-darker:hover {
background-color: var(--accent-darker);
}
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-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
.icon-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
grid-gap: 1rem;
2017-05-13 02:32:49 +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-13 02:32:49 +03:00
}