1button.launch {
2 background-color: #F9A300;
3 border: none;
4 height: 40px;
5 padding: 5px 15px;
6 color: #ffffff;
7 font-size: 16px;
8 font-weight: 300;
9 margin-top: 10px;
10 margin-right: 10px;
11}
12
13button.launch:hover {
14 cursor: pointer;
15 background-color: #FABD44;
16}
17
18button.change {
19 background-color: #F88F00;
20 border: none;
21 height: 40px;
22 padding: 5px 15px;
23 color: #ffffff;
24 font-size: 16px;
25 font-weight: 300;
26 margin-top: 10px;
27 margin-right: 10px;
28}
29
30button.change:hover {
31 cursor: pointer;
32 background-color: #F89900;
33}
34
35button:active {
36 outline: none;
37 border: none;
38}