HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: /virtual/nagasaki/public_html/shop/wp-content/themes/riffles_ver1.1/scss/base/_buttons.scss
// ==========================================================================
// Base Custom Buttons
// ==========================================================================
.button {
  border: 0;
  padding: 1em 3em;
  background-color: $default-button-color;
  color: #fff;
  text-decoration: none;
  @extend .text-center;
  @extend .inline-block;
  position: relative;
}
.button:hover {
  background-color: $default-button-hover-color;
}
.button:active {
  top: 1px;
}

.grey-button {
  background-color: #eee;
  color: #434343;
}
.grey-button:hover {
  background-color: #f1f1f1;
}

.button[disabled],
.button.disabled {
  color: #999;
  background-color: #f1f1f1;
}

.button-unstyled {
  @include font-size($default-font-size);
  color: $default-link-color;
  text-decoration: underline;
  border: 0;
  background: transparent;
  height: auto;
  padding: 0;
  cursor: pointer;
  outline: 0;
  &:hover {
    text-decoration: none;
  } // end hover
}
.button-unstyled[disabled],
.button-unstyled.disabled {
  text-decoration: none;
  color: #999;
  background-color: #ccc;
}