naloga-1/style.css

29 lines
422 B
CSS
Raw Normal View History

2023-01-06 20:40:41 +00:00
@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;
}