97 lines
1.6 KiB
CSS
97 lines
1.6 KiB
CSS
body {
|
|
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: #f9f9ff;
|
|
margin: 2em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
h1 {
|
|
font-weight: 700;
|
|
font-size: 2.5em;
|
|
color: #2c3e50;
|
|
margin-bottom: 1em;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
a.add-user {
|
|
display: inline-block;
|
|
margin-top: 2em;
|
|
font-weight: 600;
|
|
font-size: 1.2em;
|
|
color: #4a4af0;
|
|
text-decoration: none;
|
|
padding: 0.75em 2em;
|
|
border-radius: 1em;
|
|
background-color: #e8e8ff;
|
|
transition: background-color 0.3s ease;
|
|
text-align: center;
|
|
}
|
|
|
|
a.add-user:hover {
|
|
background-color: #c8c8ff;
|
|
}
|
|
.userContainer {
|
|
padding: 1em 2em;
|
|
margin: 1.5em 0;
|
|
background-color: #f5f5ff;
|
|
border-radius: 1em;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 2em;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.userContainer li {
|
|
font-size: 2em;
|
|
list-style-type: none;
|
|
flex: 1;
|
|
}
|
|
|
|
.userContainer a {
|
|
font-size: 1.2em;
|
|
text-decoration: none;
|
|
padding: 1em;
|
|
border-radius: 1em;
|
|
margin: 0;
|
|
display: inline-block;
|
|
transition: background-color 0.3s ease, color 0.3s ease;
|
|
}
|
|
|
|
.userContainer a.delete {
|
|
color: #4a4af0;
|
|
background-color: white;
|
|
}
|
|
|
|
.userContainer a.delete:hover {
|
|
background-color: #e0e0ff;
|
|
}
|
|
|
|
.userContainer a.edit {
|
|
color: white;
|
|
background-color: #4a4af0;
|
|
}
|
|
|
|
.userContainer a.edit:hover {
|
|
background-color: #3838c8;
|
|
}
|
|
|
|
a.add-user {
|
|
display: inline-block;
|
|
margin-top: 2em;
|
|
font-weight: 600;
|
|
font-size: 1.2em;
|
|
color: #4a4af0;
|
|
text-decoration: none;
|
|
padding: 0.75em 1.5em;
|
|
border-radius: 1em;
|
|
background-color: #e8e8ff;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
a.add-user:hover {
|
|
background-color: #c8c8ff;
|
|
}
|