mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-06 01:35:22 +02:00
772 lines
18 KiB
SCSS
772 lines
18 KiB
SCSS
@use "cisa_colors" as *;
|
|
@use "uswds-core" as *;
|
|
|
|
// We'll use Django's CSS vars: https://docs.djangoproject.com/en/4.2/ref/contrib/admin/#theming-support
|
|
// and assign USWDS theme vars whenever possible
|
|
// If needed (see below), we'll use the USWDS hex value
|
|
// As a last resort, we'll use CISA colors to supplement the palette
|
|
:root,
|
|
html[data-theme="light"] {
|
|
--primary: #{$theme-color-primary};
|
|
--secondary: #{$theme-color-primary-darkest};
|
|
--accent: #{$theme-color-accent-cool};
|
|
// --primary-fg: #fff;
|
|
|
|
// USWDS theme vars that are set to a token, such as #{$theme-color-base-darker}
|
|
// would interpolate to 'gray-cool-70' and output invalid CSS, so we use the hex
|
|
// source value instead: https://designsystem.digital.gov/design-tokens/color/system-tokens/
|
|
--body-fg: #3d4551;
|
|
// --body-bg: #fff;
|
|
--body-quiet-color: #{$theme-color-base-dark};
|
|
// --body-loud-color: #000;
|
|
|
|
--header-color: var( --primary-fg);
|
|
--header-branding-color: var( --primary-fg);
|
|
// --header-bg: var(--secondary);
|
|
// --header-link-color: var(--primary-fg);
|
|
|
|
--breadcrumbs-fg: #{$theme-color-accent-cool-lightest};
|
|
// --breadcrumbs-link-fg: var(--body-bg);
|
|
--breadcrumbs-bg: #{$theme-color-primary-dark};
|
|
|
|
// #{$theme-link-color} would interpolate to 'primary', so we use the source value instead
|
|
--link-fg: #{$theme-color-primary};
|
|
--link-hover-color: #{$theme-color-primary};
|
|
// $theme-link-visited-color - violet-70v
|
|
--link-selected-fg: #54278f;
|
|
|
|
--hairline-color: #{$dhs-gray-15};
|
|
// $theme-color-base-lightest - gray-5
|
|
--border-color: #f0f0f0;
|
|
|
|
--error-fg: #{$theme-color-error};
|
|
|
|
--message-success-bg: #{$theme-color-success-lighter};
|
|
--checkbox-green: #{$theme-color-success-light};
|
|
// $theme-color-warning-lighter - yellow-5
|
|
--message-warning-bg: #faf3d1;
|
|
--message-error-bg: #{$theme-color-error-lighter};
|
|
|
|
--darkened-bg: #{$dhs-gray-15}; /* A bit darker than --body-bg */
|
|
--selected-bg: var(--border-color); /* E.g. selected table cells */
|
|
--selected-row: var(--message-warning-bg);
|
|
|
|
// --button-fg: #fff;
|
|
// --button-bg: var(--secondary);
|
|
--button-hover-bg: #{$theme-color-primary-darker};
|
|
--default-button-bg: #{$theme-color-primary-dark};
|
|
--default-button-hover-bg: #{$theme-color-primary-darkest};
|
|
// #{$theme-color-base} - 'gray-cool-50'
|
|
--close-button-bg: #71767a;
|
|
// #{$theme-color-base-darker} - 'gray-cool-70'
|
|
--close-button-hover-bg: #3d4551;
|
|
--delete-button-bg: #{$theme-color-error};
|
|
--delete-button-hover-bg: #{$theme-color-error-dark};
|
|
|
|
// --object-tools-fg: var(--button-fg);
|
|
// --object-tools-bg: var(--close-button-bg);
|
|
// --object-tools-hover-bg: var(--close-button-hover-bg);
|
|
}
|
|
|
|
// Fold dark theme settings into our main CSS
|
|
// https://docs.djangoproject.com/en/4.2/ref/contrib/admin/#theming-support > dark theme note
|
|
@media (prefers-color-scheme: dark) {
|
|
:root,
|
|
html[data-theme="dark"] {
|
|
// Edit the primary to meet accessibility requ.
|
|
--primary: #23485a;
|
|
--primary-fg: #f7f7f7;
|
|
|
|
--body-fg: #eeeeee;
|
|
--body-bg: #121212;
|
|
--body-quiet-color: #e0e0e0;
|
|
--body-loud-color: #ffffff;
|
|
|
|
--breadcrumbs-link-fg: #e0e0e0;
|
|
--breadcrumbs-bg: var(--primary);
|
|
|
|
--link-fg: #81d4fa;
|
|
--link-hover-color: #4ac1f7;
|
|
--link-selected-fg: #6f94c6;
|
|
|
|
--hairline-color: #272727;
|
|
--border-color: #353535;
|
|
|
|
--error-fg: #e35f5f;
|
|
--message-success-bg: #006b1b;
|
|
--checkbox-green: #006b1b;
|
|
--message-warning-bg: #583305;
|
|
--message-error-bg: #570808;
|
|
|
|
--darkened-bg: #212121;
|
|
--selected-bg: #1b1b1b;
|
|
--selected-row: #00363a;
|
|
|
|
--close-button-bg: #333333;
|
|
--close-button-hover-bg: #666666;
|
|
}
|
|
|
|
// Dark mode django (bug due to scss cascade) and USWDS tables
|
|
.change-list .usa-table,
|
|
.change-list .usa-table--striped tbody tr:nth-child(odd) td,
|
|
.change-list .usa-table--borderless thead th,
|
|
.change-list .usa-table thead td,
|
|
.change-list .usa-table thead th,
|
|
.change-form .usa-table,
|
|
.change-form .usa-table--striped tbody tr:nth-child(odd) td,
|
|
.change-form .usa-table--borderless thead th,
|
|
.change-form .usa-table thead td,
|
|
.change-form .usa-table thead th,
|
|
body.dashboard,
|
|
body.change-list,
|
|
body.change-form,
|
|
.analytics {
|
|
color: var(--body-fg);
|
|
}
|
|
.usa-table td {
|
|
background-color: transparent;
|
|
}
|
|
|
|
// Sets darker color on delete page links.
|
|
// Remove when dark mode successfully applies to Django delete page.
|
|
.delete-confirmation .content a:not(.button) {
|
|
color: #005288;
|
|
}
|
|
}
|
|
|
|
// Firefox needs this to be specifically set
|
|
html[data-theme="dark"] {
|
|
.change-list .usa-table,
|
|
.change-list .usa-table--striped tbody tr:nth-child(odd) td,
|
|
.change-list .usa-table--borderless thead th,
|
|
.change-list .usa-table thead td,
|
|
.change-list .usa-table thead th,
|
|
.change-form .usa-table,
|
|
.change-form .usa-table--striped tbody tr:nth-child(odd) td,
|
|
.change-form .usa-table--borderless thead th,
|
|
.change-form .usa-table thead td,
|
|
.change-form .usa-table thead th,
|
|
body.dashboard,
|
|
body.change-list,
|
|
body.change-form,
|
|
.analytics {
|
|
color: var(--body-fg);
|
|
}
|
|
.usa-table td {
|
|
background-color: transparent;
|
|
}
|
|
|
|
// Sets darker color on delete page links.
|
|
// Remove when dark mode successfully applies to Django delete page.
|
|
.delete-confirmation .content a:not(.button) {
|
|
color: #005288;
|
|
}
|
|
}
|
|
|
|
|
|
#branding h1 a:link, #branding h1 a:visited {
|
|
color: var(--primary-fg);
|
|
}
|
|
|
|
|
|
|
|
#branding h1,
|
|
h1, h2, h3,
|
|
.module h2 {
|
|
font-weight: font-weight('bold');
|
|
}
|
|
|
|
div#content > h2 {
|
|
font-size: 1.3rem;
|
|
}
|
|
|
|
.module h3 {
|
|
padding: 0;
|
|
color: var(--link-fg);
|
|
margin: units(2) 0 units(1) 0;
|
|
}
|
|
|
|
.change-list {
|
|
.usa-table--striped tbody tr:nth-child(odd) td,
|
|
.usa-table--striped tbody tr:nth-child(odd) th,
|
|
.usa-table td,
|
|
.usa-table th {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
|
|
.change-form {
|
|
.usa-table--striped tbody tr:nth-child(odd) td,
|
|
.usa-table--striped tbody tr:nth-child(odd) th,
|
|
.usa-table td,
|
|
.usa-table th {
|
|
background-color: transparent;
|
|
}
|
|
.usa-table td {
|
|
border-bottom: 1px solid var(--hairline-color);
|
|
}
|
|
}
|
|
|
|
#nav-sidebar {
|
|
padding-top: 20px;
|
|
}
|
|
|
|
// Fix django admin button height bugs
|
|
.submit-row a.deletelink,
|
|
.delete-confirmation form .cancel-link,
|
|
.submit-row a.closelink {
|
|
height: auto!important;
|
|
font-size: 14px;
|
|
}
|
|
|
|
// right justify custom buttons and display as links
|
|
.submit-row input.custom-link-button,
|
|
.submit-row input.custom-link-button:hover {
|
|
background: none;
|
|
border: none;
|
|
color: var(--link-fg);
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
padding: 0;
|
|
font-size: inherit;
|
|
margin-left: auto;
|
|
}
|
|
.submit-row div.spacer {
|
|
flex-grow: 1;
|
|
}
|
|
.submit-row .mini-spacer{
|
|
margin-left: 2px;
|
|
margin-right: 2px;
|
|
}
|
|
.submit-row span {
|
|
margin-top: units(1);
|
|
}
|
|
|
|
// Customize
|
|
// Keep th from collapsing
|
|
.min-width-25 {
|
|
min-width: 25px;
|
|
}
|
|
.min-width-81 {
|
|
min-width: 81px;
|
|
}
|
|
|
|
.primary-th {
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
font-size: 0.75rem;
|
|
letter-spacing: 0.5px;
|
|
text-transform: none;
|
|
font-weight: font-weight('bold');
|
|
text-align: left;
|
|
background: var(--primary);
|
|
color: var(--header-link-color);
|
|
}
|
|
|
|
// Font mismatch issue due to conflicts between django and uswds,
|
|
// rough overrides for consistency and readability. May want to revise
|
|
// in the future
|
|
.object-tools li a,
|
|
.object-tools p a {
|
|
font-family: family('sans');
|
|
text-transform: none!important;
|
|
font-size: 14px!important;
|
|
}
|
|
|
|
// For consistency, make the overrided p a
|
|
// object tool buttons the same size as the ul li a
|
|
.object-tools p {
|
|
line-height: 1.25rem;
|
|
}
|
|
|
|
// Fix margins in mobile view
|
|
@media (max-width: 767px) {
|
|
.object-tools li {
|
|
// our CSS is read before django's, so need !important
|
|
// to override
|
|
margin-left: 0!important;
|
|
margin-right: 15px;
|
|
}
|
|
}
|
|
|
|
// Fix height of buttons
|
|
.object-tools li {
|
|
height: auto;
|
|
}
|
|
|
|
// Fixing height of buttons breaks layout because
|
|
// object-tools and changelist are siblings with
|
|
// flexbox positioning
|
|
#changelist {
|
|
clear: both;
|
|
}
|
|
|
|
// Account for the h2, roughly 90px
|
|
@include at-media(tablet) {
|
|
.object-tools {
|
|
padding-left: 90px;
|
|
}
|
|
}
|
|
|
|
// Combo box
|
|
#select2-id_domain-results,
|
|
#select2-id_user-results {
|
|
width: 100%;
|
|
}
|
|
|
|
// Content list inside of a DjA alert, unstyled
|
|
.messagelist_content-list--unstyled {
|
|
padding-left: 0;
|
|
li {
|
|
font-family: family('sans');
|
|
font-size: 13.92px!important;
|
|
background: none!important;
|
|
padding: 0!important;
|
|
margin: 0!important;
|
|
}
|
|
}
|
|
|
|
// Fixes a display issue where the list was entirely white, or had too much whitespace
|
|
.select2-dropdown {
|
|
display: inline-grid !important;
|
|
}
|
|
|
|
input.admin-confirm-button {
|
|
text-transform: none;
|
|
}
|
|
|
|
// Button groups in /admin incorrectly have bullets.
|
|
// Remove that!
|
|
.usa-modal__footer .usa-button-group__item {
|
|
list-style-type: none;
|
|
}
|
|
|
|
// USWDS media checks are overzealous in this situation,
|
|
// we should manually define this behaviour.
|
|
@media (max-width: 768px) {
|
|
.button-list-mobile {
|
|
display: contents !important;
|
|
}
|
|
}
|
|
|
|
.usa-button-group {
|
|
margin-left: -0.25rem!important;
|
|
padding-left: 0!important;
|
|
.usa-button-group__item {
|
|
list-style-type: none;
|
|
line-height: normal;
|
|
}
|
|
.button {
|
|
display: inline-block;
|
|
padding: 10px 8px;
|
|
line-height: normal;
|
|
}
|
|
.usa-icon {
|
|
top: 2px;
|
|
}
|
|
a.button:active, a.button:focus {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.module--custom {
|
|
a {
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
border: solid 1px var(--darkened-bg);
|
|
background: var(--darkened-bg);
|
|
}
|
|
}
|
|
|
|
.usa-modal--django-admin .usa-prose ul > li {
|
|
list-style-type: inherit;
|
|
// Styling based off of the <p> styling in django admin
|
|
line-height: 1.5;
|
|
margin-bottom: 0;
|
|
margin-top: 0;
|
|
max-width: 68ex;
|
|
}
|
|
|
|
.usa-summary-box__dhs-color {
|
|
color: $dhs-blue-70;
|
|
}
|
|
|
|
details.dja-detail-table {
|
|
display: inline-table;
|
|
background-color: var(--body-bg);
|
|
.dja-details-summary {
|
|
cursor: pointer;
|
|
color: var(--body-quiet-color);
|
|
}
|
|
|
|
@media (max-width: 1024px){
|
|
.dja-detail-contents {
|
|
max-width: 400px !important;
|
|
overflow-x: scroll !important;
|
|
}
|
|
}
|
|
|
|
tr {
|
|
background-color: transparent;
|
|
}
|
|
|
|
td, th {
|
|
padding-left: 12px;
|
|
border: none
|
|
}
|
|
|
|
thead > tr > th {
|
|
border-radius: 4px;
|
|
border-top: none;
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
|
|
address.margin-top-neg-1__detail-list {
|
|
margin-top: -8px !important;
|
|
}
|
|
|
|
.dja-detail-list {
|
|
dl {
|
|
padding-left: 0px !important;
|
|
margin-top: 5px !important;
|
|
}
|
|
// Mimic the normal label size
|
|
address, dt {
|
|
font-size: 0.8125rem;
|
|
color: var(--body-quiet-color);
|
|
}
|
|
}
|
|
|
|
td button.usa-button__clipboard-link, address.dja-address-contact-list {
|
|
font-size: unset;
|
|
}
|
|
|
|
address.dja-address-contact-list {
|
|
color: var(--body-quiet-color);
|
|
button.usa-button__clipboard-link {
|
|
font-size: unset;
|
|
}
|
|
}
|
|
|
|
// Mimic the normal label size
|
|
@media (max-width: 1024px){
|
|
.dja-detail-list dt, .dja-detail-list address {
|
|
font-size: 0.875rem;
|
|
color: var(--body-quiet-color);
|
|
}
|
|
|
|
address button.usa-button__clipboard-link, td button.usa-button__clipboard-link {
|
|
font-size: 0.875rem !important;
|
|
}
|
|
|
|
}
|
|
|
|
.errors span.select2-selection {
|
|
border: 1px solid var(--error-fg) !important;
|
|
}
|
|
|
|
.choice-filter {
|
|
position: relative;
|
|
padding-left: 20px;
|
|
svg {
|
|
top: 4px;
|
|
}
|
|
}
|
|
|
|
.choice-filter--checked {
|
|
svg:nth-child(1) {
|
|
background: var(--checkbox-green);
|
|
fill: var(--checkbox-green);
|
|
}
|
|
svg:nth-child(2) {
|
|
color: var(--body-loud-color);
|
|
}
|
|
}
|
|
|
|
// Let's define this block of code once and use it for analysts over a certain screen size,
|
|
// superusers over another screen size.
|
|
@mixin submit-row-wrapper--collapsed-one-line(){
|
|
&.submit-row-wrapper--collapsed {
|
|
transform: translate3d(0, 42px, 0);
|
|
}
|
|
.submit-row {
|
|
clear: none;
|
|
}
|
|
}
|
|
|
|
// Sticky submit bar for domain requests on desktop
|
|
@media screen and (min-width:768px) {
|
|
.submit-row-wrapper {
|
|
position: fixed;
|
|
bottom: 0;
|
|
right: 0;
|
|
left: 338px;
|
|
background: var(--darkened-bg);
|
|
border-top-left-radius: 6px;
|
|
transition: transform .2s ease-out;
|
|
.submit-row {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
.submit-row-wrapper--collapsed {
|
|
// translate3d is more performant than translateY
|
|
// https://stackoverflow.com/questions/22111256/translate3d-vs-translate-performance
|
|
transform: translate3d(0, 88px, 0);
|
|
}
|
|
.submit-row-wrapper--collapsed-one-line {
|
|
@include submit-row-wrapper--collapsed-one-line();
|
|
}
|
|
.submit-row {
|
|
clear: both;
|
|
}
|
|
.submit-row-toggle{
|
|
display: inline-block;
|
|
position: absolute;
|
|
top: -30px;
|
|
right: 0;
|
|
background: var(--darkened-bg);
|
|
}
|
|
#submitRowToggle {
|
|
color: var(--body-fg);
|
|
}
|
|
.requested-domain-sticky {
|
|
max-width: 325px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
font-size: medium;
|
|
padding-top: 3px !important;
|
|
}
|
|
}
|
|
|
|
.visible-768 {
|
|
display: none;
|
|
}
|
|
|
|
@media screen and (min-width:768px) {
|
|
.visible-768 {
|
|
display: block;
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width:935px) {
|
|
// Analyst only class
|
|
.submit-row-wrapper--analyst-view {
|
|
@include submit-row-wrapper--collapsed-one-line();
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width:1256px) {
|
|
.submit-row-wrapper {
|
|
@include submit-row-wrapper--collapsed-one-line();
|
|
}
|
|
}
|
|
|
|
// Collapse button styles for fieldsets
|
|
.module.collapse--dgfieldset {
|
|
margin-top: -35px;
|
|
padding-top: 0;
|
|
border: none;
|
|
}
|
|
.collapse-toggle--dgsimple,
|
|
.module.collapse--dgfieldset button {
|
|
background: none;
|
|
text-transform: none;
|
|
color: var(--link-fg);
|
|
margin-top: 8px;
|
|
margin-left: 10px;
|
|
span {
|
|
text-decoration: underline;
|
|
font-size: 13px;
|
|
font-feature-settings: "kern";
|
|
font-kerning: normal;
|
|
line-height: 13px;
|
|
font-family: family('sans');
|
|
}
|
|
&:hover {
|
|
color: var(--link-fg);
|
|
svg {
|
|
color: var(--link-fg);
|
|
}
|
|
}
|
|
}
|
|
.collapse--dgfieldset.collapsed .collapse-toggle--dgfieldset {
|
|
display: inline-block!important;
|
|
* {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
.collapse--dgsimple.collapsed {
|
|
display: none;
|
|
}
|
|
|
|
.dja-status-list {
|
|
border-top: solid 1px var(--border-color);
|
|
margin-left: 0 !important;
|
|
padding-left: 0 !important;
|
|
padding-top: 10px;
|
|
li {
|
|
line-height: 1.5;
|
|
font-family: family('sans');
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
|
|
// Make the clipboard button "float" inside of the input box
|
|
.admin-icon-group {
|
|
position: relative;
|
|
display: inline;
|
|
align-items: center;
|
|
|
|
input {
|
|
// Allow for padding around the copy button
|
|
padding-right: 35px !important;
|
|
// Match the height of other inputs
|
|
min-height: 2.25rem !important;
|
|
}
|
|
|
|
button {
|
|
line-height: 14px;
|
|
width: max-content;
|
|
font-size: unset;
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
@media (max-width: 1000px) {
|
|
button {
|
|
display: block;
|
|
padding-top: 8px;
|
|
}
|
|
}
|
|
|
|
span {
|
|
padding-left: 0.1rem;
|
|
}
|
|
|
|
}
|
|
|
|
.admin-icon-group.admin-icon-group__clipboard-link {
|
|
position: relative;
|
|
display: inline;
|
|
align-items: center;
|
|
|
|
|
|
.usa-button__icon {
|
|
position: absolute;
|
|
right: auto;
|
|
left: 4px;
|
|
height: 100%;
|
|
top: -1px;
|
|
}
|
|
button {
|
|
font-size: unset !important;
|
|
display: inline-flex;
|
|
padding-top: 4px;
|
|
line-height: 14px;
|
|
width: max-content;
|
|
font-size: unset;
|
|
text-decoration: none !important;
|
|
}
|
|
}
|
|
|
|
button.usa-button__clipboard {
|
|
color: var(--link-fg);
|
|
}
|
|
|
|
.no-outline-on-click:focus {
|
|
outline: none !important;
|
|
}
|
|
|
|
.usa-button__small-text {
|
|
font-size: small;
|
|
}
|
|
|
|
// Get rid of padding on all help texts
|
|
form .aligned p.help, form .aligned div.help {
|
|
padding-left: 0px !important;
|
|
}
|
|
|
|
// We override the DJA header on multi list selects from h2 to h3
|
|
// The following block of code styles our generated h3s to match the old h2s
|
|
.selector .selector-available h3 {
|
|
background: var(--darkened-bg);
|
|
color: var(--body-quiet-color);
|
|
}
|
|
|
|
.selector-available h3, .selector-chosen h3 {
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 4px 4px 0 0;
|
|
margin: 0;
|
|
padding: 8px;
|
|
font-size: 0.8125rem;
|
|
text-align: left;
|
|
margin: 0;
|
|
padding: 8px;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.selector .selector-chosen h3 {
|
|
background: var(--primary);
|
|
color: var(--header-link-color);
|
|
}
|
|
|
|
div.dja__model-description{
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
|
|
p, li {
|
|
font-size: medium;
|
|
color: var(--secondary);
|
|
}
|
|
|
|
li {
|
|
list-style-type: disc;
|
|
font-family: Source Sans Pro Web,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
|
|
}
|
|
|
|
a, a:link, a:visited {
|
|
font-size: medium;
|
|
color: #005288 !important;
|
|
}
|
|
|
|
&.dja__model-description--no-overflow {
|
|
display: block;
|
|
overflow: auto;
|
|
}
|
|
|
|
}
|
|
|
|
.import_export_text {
|
|
color: var(--secondary);
|
|
}
|
|
|
|
.text-underline {
|
|
text-decoration: underline !important;
|
|
}
|
|
|
|
//-- Override some styling for the USWDS summary box (per design quidance for ticket #2055
|
|
.usa-summary-box {
|
|
background: #{$dhs-blue-10};
|
|
border-color: #{$dhs-blue-30};
|
|
max-width: 72ex;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.usa-summary-box h3 {
|
|
color: #{$dhs-blue-60};
|
|
}
|
|
|
|
.wrapped-button-group {
|
|
// This button group has too many items
|
|
flex-wrap: wrap;
|
|
// Fix a weird spacing issue with USWDS a buttons in DJA
|
|
a.button {
|
|
padding: 6px 8px 10px 8px;
|
|
}
|
|
}
|