mirror of
https://github.com/docker/docs.git
synced 2026-03-28 14:58:53 +07:00
* WIP #2052 - Adding sass - Test components - Night mode - docker con banner - archive legacy css * add compressed css * Update branding for cloud api docs * split out global header * rescale mods * adjust viewport rescaling * sync * test * testing deploy * john rules, please update man * test: removing all styles * trying to make netlify work * add min-height to sidebars * testing * Update style.css manually add css * testing * test * Update style.css * adding dockercon svg * add svgs add svgs * remove css * re-add * s/container-fluid/container
72 lines
1.3 KiB
SCSS
Executable File
72 lines
1.3 KiB
SCSS
Executable File
/*
|
|
*
|
|
* Buttons ***********************************************************************
|
|
*
|
|
*/
|
|
|
|
ul.buttons {
|
|
list-style: none;
|
|
width: 450px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
a.button {
|
|
color: #fff;
|
|
}
|
|
|
|
a.button.outline-btn {
|
|
color: #0087C8;
|
|
}
|
|
|
|
.button {
|
|
margin: 10px 10px 10px 0;
|
|
font-family: Geomanist Book;
|
|
padding: 12px 35px 10px;
|
|
min-width: 200px;
|
|
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
|
|
float: left;
|
|
text-align: center;
|
|
&:hover {
|
|
color: #fff;
|
|
opacity: 0.7;
|
|
}
|
|
}
|
|
|
|
.primary-btn {
|
|
background: #1488C6;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.secondary-btn {
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.transparent-btn {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
text-shadow: 0 1px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.outline-btn {
|
|
background: #fff;
|
|
border: 1px solid;
|
|
border-color: #0087C8;
|
|
text-decoration: none;
|
|
margin: 0;
|
|
}
|
|
|
|
.outline-btn:hover,
|
|
.primary-btn:hover,
|
|
.secondary-btn:hover {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.outline-btn:hover {
|
|
color: #1488C6;
|
|
}
|