Files
my-links/inertia/css/app.css
2024-06-02 23:59:57 +02:00

37 lines
527 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
* {
margin: 0;
padding: 0;
}
html,
body,
#app {
background-color: #f7f8fa;
font-family: 'Poppins', sans-serif;
color: #46444c;
height: 100%;
width: 100%;
}
.title {
font-size: 42px;
font-weight: 500;
color: #5a45ff;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100%;
width: 100%;
}
a {
text-decoration: underline;
color: #5a45ff;
}