23 lines
356 B
CSS
23 lines
356 B
CSS
.div-center {
|
|
display: table;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.div-center img {
|
|
width: 10rem;
|
|
}
|
|
|
|
.buttons-group {
|
|
display: flex;
|
|
}
|
|
|
|
.buttons-group button:first-child {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
a, div, img, p, button {
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
-webkit-touch-callout: none;
|
|
-webkit-tap-highlight-color: transparent;
|
|
} |