0 Star 0 Fork 0

juncheung01 / feather

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
style.css 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
Cole Bemis 提交于 2017-05-31 09:53 . Delete commented code
.rubik {
font-family: "Rubik", sans-serif;
}
.font-smoothing {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.bg-accent {
background-color: #0055ff;
}
.button {
display: inline-block;
padding: 1rem 2rem;
font-size: 1rem;
line-height: 1.25;
text-align: center;
text-decoration: none;
}
.lh-none {
line-height: 0;
}
.ellipse {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.svg [stroke] {
stroke: currentColor;
}
.svg [fill]:not([fill=none]) {
fill: currentColor;
}
.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;
}
}
HTML
1
https://gitee.com/juncheung/feather.git
git@gitee.com:juncheung/feather.git
juncheung
feather
feather
master

搜索帮助