Add buttons back to the index
This commit is contained in:
31
styles/buttons.css
Normal file
31
styles/buttons.css
Normal file
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* buttons.css
|
||||
* Copyright (C) 2020 Vintage Salt
|
||||
*
|
||||
* Distributed under terms of the MIT license.
|
||||
*/
|
||||
|
||||
/* BIG ICON BUTTONS
|
||||
* Used on the index for services */
|
||||
div.iconbuttoncontainer {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
grid-template-rows: auto auto auto auto;
|
||||
}
|
||||
a.iconbutton {
|
||||
background: var(--background-bright);
|
||||
border-radius: 8px;
|
||||
box-shadow: 5px 5px var(--shadow);
|
||||
display: block;
|
||||
margin: 0.5em;
|
||||
padding: 1em;
|
||||
text-align: center;
|
||||
}
|
||||
a.iconbutton:hover {
|
||||
background: var(--link-hover);
|
||||
color: var(--background);
|
||||
}
|
||||
a.iconbutton i {
|
||||
font-size: 400%
|
||||
}
|
||||
|
Reference in New Issue
Block a user