naloga-1/style.css
Gašper Dobrovoljc 6c1a85bcf1
Initial commit
2023-01-06 21:40:41 +01:00

29 lines
422 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');
body {
margin: 0;
height: 100vh;
font-family: 'Nunito', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#users {
border-collapse: collapse;
}
#users td,
th {
border: 1px solid black;
padding: 6px;
}
#users td:first-child {
font-weight: bold;
text-align: center;
}