interactive.css (592B)
1 #notifications input[type="submit"] { 2 background-color: var(--accent2); 3 padding: 0.3em; 4 font-family: Arial, Helvetica, sans-serif; 5 border: solid #ddd; 6 border-radius: 0.2em; 7 border-width: 0.1em; 8 color: var(--button-text-col); 9 transition: background-color, color, 0.3s; 10 transition-timing-function: ease-in-out; 11 } 12 13 #notifications input[type="submit"]:hover { 14 background-color: var(--accent); 15 padding: 0.3em; 16 font-family: Arial, Helvetica, sans-serif; 17 border: solid #ffffff; 18 border-radius: 0.2em; 19 border-width: 0.1em; 20 color: var(--accent2); 21 }