2021-03-28 13:53:02 +00:00
|
|
|
import { StyleSheet } from "aphrodite"
|
2021-01-14 23:24:55 +00:00
|
|
|
|
|
|
|
export const estilosGlobales = StyleSheet.create({
|
|
|
|
contenedor: {
|
2021-03-28 13:53:02 +00:00
|
|
|
margin: "0.3rem",
|
2021-08-18 20:40:10 +00:00
|
|
|
padding: "0.5rem 0.5rem",
|
|
|
|
borderRadius: "0.4rem",
|
2021-01-14 23:24:55 +00:00
|
|
|
backdropFilter: "blur(40px)",
|
2021-08-18 20:40:10 +00:00
|
|
|
backgroundColor: "rgba(125, 125, 125, 0.3)",
|
2021-03-26 02:39:34 +00:00
|
|
|
color: "var(--color-texto)",
|
2021-03-28 13:53:02 +00:00
|
|
|
border: "solid 1px transparent",
|
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-03-26 02:39:34 +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: {
|
2021-03-26 02:39:34 +00:00
|
|
|
textDecoration: "underline rgba(255, 255, 255, 0.4)",
|
2021-01-15 13:34:24 +00:00
|
|
|
},
|
|
|
|
contenedorCursorActivo: {
|
2021-03-26 02:39:34 +00:00
|
|
|
backgroundColor: "rgba(200, 200, 200, 0.3)",
|
2021-03-28 13:53:02 +00:00
|
|
|
border: "solid 1px rgba(255, 255, 255, 0.75)",
|
2021-01-15 13:34:24 +00:00
|
|
|
},
|
2021-03-03 14:56:22 +00:00
|
|
|
contenedorPhospor: {
|
|
|
|
padding: "0.5rem 0.65rem",
|
2021-03-26 02:39:34 +00:00
|
|
|
transform: "translateY(0.2rem)",
|
2021-03-03 14:56:22 +00:00
|
|
|
},
|
2021-01-14 23:24:55 +00:00
|
|
|
inlineBlock: {
|
2021-03-26 02:39:34 +00:00
|
|
|
display: "inline-block",
|
2021-03-03 14:56:22 +00:00
|
|
|
},
|
|
|
|
botonPhospor: {
|
|
|
|
"::before": {
|
|
|
|
fontSize: "1.25rem",
|
|
|
|
// transform: "translateY(0.2rem)",
|
|
|
|
textDecoration: "underline rgba(255, 255, 255, 0.4)",
|
2021-03-26 02:39:34 +00:00
|
|
|
},
|
2021-03-03 14:56:22 +00:00
|
|
|
},
|
2021-03-29 00:15:43 +00:00
|
|
|
linkGenerico: {
|
|
|
|
color: "var(--color-texto)"
|
|
|
|
},
|
2021-03-26 02:39:34 +00:00
|
|
|
})
|