26 lines
455 B
CSS
26 lines
455 B
CSS
|
.button {
|
||
|
padding: .25em;
|
||
|
display: inline;
|
||
|
vertical-align: middle;
|
||
|
cursor: pointer;
|
||
|
cursor: hand;
|
||
|
font-size: 4em;
|
||
|
}
|
||
|
|
||
|
.buttons {
|
||
|
text-align: center;
|
||
|
-webkit-touch-callout: none;
|
||
|
-webkit-user-select: none;
|
||
|
-khtml-user-select: none;
|
||
|
-moz-user-select: none;
|
||
|
-ms-user-select: none;
|
||
|
-o-user-select: none;
|
||
|
user-select: none;
|
||
|
}
|
||
|
|
||
|
#versus {
|
||
|
text-align: center;
|
||
|
display: none;
|
||
|
position:relative;
|
||
|
}
|