2021-01-14 23:24:55 +00:00
|
|
|
import {StyleSheet} from "aphrodite";
|
|
|
|
|
|
|
|
export const estilosGlobales = StyleSheet.create({
|
|
|
|
contenedor: {
|
|
|
|
margin: "0.5rem",
|
|
|
|
padding: "0.75rem 0.75rem",
|
|
|
|
borderRadius: "10px",
|
|
|
|
backdropFilter: "blur(40px)",
|
|
|
|
backgroundColor: "rgba(100, 100, 100, 0.25)",
|
2021-01-16 00:34:43 +00:00
|
|
|
color: "var(--color-texto)"
|
2021-01-14 23:24:55 +00:00
|
|
|
},
|
|
|
|
contenedorCursor: {
|
|
|
|
cursor: "pointer",
|
|
|
|
userSelect: "none",
|
|
|
|
transition: "background-color 200ms",
|
2021-01-15 13:34:24 +00:00
|
|
|
textDecoration: "underline solid white 2px",
|
2021-01-14 23:24:55 +00:00
|
|
|
":hover": {
|
2021-01-15 14:34:35 +00:00
|
|
|
backgroundColor: "rgba(200, 200, 200, 0.3)"
|
2021-01-14 23:24:55 +00:00
|
|
|
}
|
|
|
|
},
|
2021-01-15 13:34:24 +00:00
|
|
|
contenedorCursorSoft: {
|
|
|
|
textDecoration: "underline rgba(255, 255, 255, 0.4)"
|
|
|
|
},
|
|
|
|
contenedorCursorActivo: {
|
2021-01-15 14:34:35 +00:00
|
|
|
backgroundColor: "rgba(200, 200, 200, 0.3)"
|
2021-01-15 13:34:24 +00:00
|
|
|
},
|
2021-01-14 23:24:55 +00:00
|
|
|
inlineBlock: {
|
|
|
|
display: "inline-block"
|
|
|
|
}
|
|
|
|
});
|