Files
SAE-BUT2-frontend/src/index.css
T
2025-11-16 12:26:49 +01:00

77 lines
1.2 KiB
CSS

* {
margin: 0;
padding: 0;
width: 100%;
box-sizing: border-box;
overflow-x: hidden;
}
:root {
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.content {
padding: 1.5rem;
z-index: 1;
}
a {
font-weight: 500;
color: #646cff;
text-decoration: inherit;
}
body {
margin: 0;
display: flex;
place-items: center;
width:100%;
min-width: 320px;
min-height: 100vh;
}
.glassCard {
width: 100%;
padding: 10px;
height: fit-content;
background: rgba(255, 255, 255, 0.65);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow:
0 8px 32px rgba(0, 0, 0, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.5),
inset 0 -1px 0 rgba(255, 255, 255, 0.1),
inset 0 0 8px 4px rgba(255, 255, 255, 0.4);
position: relative;
overflow: hidden;
}
h1 {
font-size: 3.2em;
line-height: 1.1;
}
button:hover {
border-color: #646cff;
}
button:focus,
button:focus-visible {
outline: 4px auto -webkit-focus-ring-color;
}