ソースを参照

Style buttons

master
コミット
fa03abed94
1個のファイルの変更22行の追加0行の削除
  1. +22
    -0
      assets/main.css

+ 22
- 0
assets/main.css ファイルの表示

@@ -2,6 +2,7 @@
--primary-bg: white;
--secondary-bg: #F7F9FA;
--text: #4C555E;
--text-dark: #394046;
--text-light: #1D262E;
--text-lighter: #28323B;
--text-lightest: #A1A7AD;
@@ -24,6 +25,27 @@ label {
font-size: 16px;
}

button {
background: var(--text);
color: white;
border: none;
padding: 7px;
border-radius: 3px;
font-weight: bold;
}

button:not(:disabled) {
cursor: pointer;
}

button:disabled {
background: grey;
}

/* button:not(:disabled):hover { */
/* background: var(--text-dark); */
/* } */

input, select {
border: 2px solid var(--outline);
border-radius: 3px;


読み込み中…
キャンセル
保存