This repository has been archived on 2026-01-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
plyr/demo/src/less/layout/core.less
T
2017-11-05 01:02:10 +11:00

67 lines
1020 B
Plaintext

// ==========================================================================
// Core
// ==========================================================================
*,
*::after,
*::before {
box-sizing: border-box;
}
html,
body {
display: flex;
width: 100%;
}
html {
background: @page-background;
background-attachment: fixed;
height: 100%;
}
body {
display: flex;
min-height: 100%;
align-items: center;
flex-direction: column;
}
main {
text-align: center;
}
.grid {
flex: 1;
}
aside {
display: flex;
flex-shrink: 0;
align-items: center;
justify-content: center;
width: 100%;
padding: (@spacing-base * 0.75);
background: #fff;
text-align: center;
color: @gray;
text-shadow: none;
.icon {
margin-right: (@spacing-base / 2);
fill: @color-twitter;
}
p {
margin: 0;
}
a {
color: @color-twitter;
&.tab-focus {
.tab-focus(@color-twitter);
}
}
}