chore: use bluesky4-based structure
This commit is contained in:
parent
bd8a77e1e3
commit
d30249b5be
7 changed files with 20 additions and 15 deletions
7
dist/style.css
vendored
7
dist/style.css
vendored
|
@ -1190,7 +1190,6 @@ ul.card-list {
|
||||||
background-color: #859900 !important;
|
background-color: #859900 !important;
|
||||||
color: #fdf6e3; }
|
color: #fdf6e3; }
|
||||||
|
|
||||||
/* ------------------ BUTTONS ------------------- */
|
|
||||||
/*
|
/*
|
||||||
* 3. Buttons and labels
|
* 3. Buttons and labels
|
||||||
* All clickable elements
|
* All clickable elements
|
||||||
|
@ -1599,7 +1598,11 @@ ul.breadcrumb, ol.breadcrumb, .breadcrumb {
|
||||||
.btn-mastodon:hover:before, .btn-mastodon:active:before, .btn-mastodon:focus:before, a:hover > .btn-mastodon:before, a:active > .btn-mastodon:before, a:focus > .btn-mastodon:before, .btn-mastodon:not(.disabled):not(:disabled):hover:before, .btn-mastodon:not(.disabled):not(:disabled):active:before, .btn-mastodon:not(.disabled):not(:disabled):focus:before, a:hover > .btn-mastodon:not(.disabled):not(:disabled):before, a:active > .btn-mastodon:not(.disabled):not(:disabled):before, a:focus > .btn-mastodon:not(.disabled):not(:disabled):before, a.btn-mastodon:hover:before, a.btn-mastodon:active:before, a.btn-mastodon:focus:before, a:hover > a.btn-mastodon:before, a:active > a.btn-mastodon:before, a:focus > a.btn-mastodon:before, a.btn-mastodon:not(.disabled):not(:disabled):hover:before, a.btn-mastodon:not(.disabled):not(:disabled):active:before, a.btn-mastodon:not(.disabled):not(:disabled):focus:before, a:hover > a.btn-mastodon:not(.disabled):not(:disabled):before, a:active > a.btn-mastodon:not(.disabled):not(:disabled):before, a:focus > a.btn-mastodon:not(.disabled):not(:disabled):before {
|
.btn-mastodon:hover:before, .btn-mastodon:active:before, .btn-mastodon:focus:before, a:hover > .btn-mastodon:before, a:active > .btn-mastodon:before, a:focus > .btn-mastodon:before, .btn-mastodon:not(.disabled):not(:disabled):hover:before, .btn-mastodon:not(.disabled):not(:disabled):active:before, .btn-mastodon:not(.disabled):not(:disabled):focus:before, a:hover > .btn-mastodon:not(.disabled):not(:disabled):before, a:active > .btn-mastodon:not(.disabled):not(:disabled):before, a:focus > .btn-mastodon:not(.disabled):not(:disabled):before, a.btn-mastodon:hover:before, a.btn-mastodon:active:before, a.btn-mastodon:focus:before, a:hover > a.btn-mastodon:before, a:active > a.btn-mastodon:before, a:focus > a.btn-mastodon:before, a.btn-mastodon:not(.disabled):not(:disabled):hover:before, a.btn-mastodon:not(.disabled):not(:disabled):active:before, a.btn-mastodon:not(.disabled):not(:disabled):focus:before, a:hover > a.btn-mastodon:not(.disabled):not(:disabled):before, a:active > a.btn-mastodon:not(.disabled):not(:disabled):before, a:focus > a.btn-mastodon:not(.disabled):not(:disabled):before {
|
||||||
background-color: #181a21; }
|
background-color: #181a21; }
|
||||||
|
|
||||||
/* ------------------ PREVIEWS ------------------- */
|
/*
|
||||||
|
* 4. Previews
|
||||||
|
* Special style for previews cards
|
||||||
|
*
|
||||||
|
*/
|
||||||
.previews-section {
|
.previews-section {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: auto auto auto;
|
grid-template-columns: auto auto auto;
|
||||||
|
|
5
src/scss/_drawing.scss
Normal file
5
src/scss/_drawing.scss
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
@import 'components/cards';
|
||||||
|
|
||||||
|
@import 'components/buttons';
|
||||||
|
|
||||||
|
@import 'components/previews';
|
|
@ -1,13 +1,8 @@
|
||||||
@import 'global';
|
/*
|
||||||
|
* 4. Previews
|
||||||
@import 'cards';
|
* Special style for previews cards
|
||||||
|
*
|
||||||
/* ------------------ BUTTONS ------------------- */
|
*/
|
||||||
|
|
||||||
@import 'buttons';
|
|
||||||
|
|
||||||
/* ------------------ PREVIEWS ------------------- */
|
|
||||||
|
|
||||||
$preview-height: 8*1.5rem;
|
$preview-height: 8*1.5rem;
|
||||||
|
|
||||||
.previews-section {
|
.previews-section {
|
||||||
|
@ -60,7 +55,7 @@ $preview-height: 8*1.5rem;
|
||||||
background-color:rgba(0,0,0,0.00);
|
background-color:rgba(0,0,0,0.00);
|
||||||
color:rgba(0,0,0,0.4);
|
color:rgba(0,0,0,0.4);
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
-ms-flex-align: center !important;
|
-ms-flex-align: center !important;
|
||||||
align-items: center !important;
|
align-items: center !important;
|
||||||
|
@ -200,4 +195,4 @@ $preview-height: 8*1.5rem;
|
||||||
height:auto;
|
height:auto;
|
||||||
display:block;
|
display:block;
|
||||||
margin:auto;
|
margin:auto;
|
||||||
}
|
}
|
|
@ -4,4 +4,6 @@
|
||||||
|
|
||||||
@import 'typography';
|
@import 'typography';
|
||||||
|
|
||||||
@import 'commons';
|
@import 'global';
|
||||||
|
|
||||||
|
@import 'drawing';
|
||||||
|
|
Loading…
Reference in a new issue