35 lines
547 B
CSS
35 lines
547 B
CSS
|
.cancelButton {
|
||
|
/*Button alignment*/
|
||
|
width: 25%;
|
||
|
height: 5%;
|
||
|
margin-left: 15%;
|
||
|
|
||
|
|
||
|
/*Button visual*/
|
||
|
border-radius: 25px;
|
||
|
cursor: pointer;
|
||
|
background-color: #828282;
|
||
|
|
||
|
/*Text*/
|
||
|
font-family: Arial, serif;
|
||
|
font-size: 12px;
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
|
||
|
|
||
|
.submitButton {
|
||
|
/*Button alignment*/
|
||
|
width: 25%;
|
||
|
height: 5%;
|
||
|
|
||
|
|
||
|
/*Button visual*/
|
||
|
border-radius: 25px;
|
||
|
cursor: pointer;
|
||
|
background-color: #007C36;
|
||
|
|
||
|
/*Text*/
|
||
|
font-family: Arial, serif;
|
||
|
font-size: 12px;
|
||
|
color: #ffffff;
|
||
|
}
|