Completed exercise 03

This commit is contained in:
NetMan 2023-12-29 17:35:33 +01:00
parent 7acd8545fe
commit f424d2280d
1 changed files with 9 additions and 0 deletions

View File

@ -12,6 +12,10 @@ body {
background: white; background: white;
border-bottom: 1px solid #ddd; border-bottom: 1px solid #ddd;
box-shadow: 0 0 8px rgba(0,0,0,.1); box-shadow: 0 0 8px rgba(0,0,0,.1);
display: flex;
padding: 10px 16px;
align-items: center;
gap: 20px;
} }
.profile-image { .profile-image {
@ -35,6 +39,8 @@ button {
background: rebeccapurple; background: rebeccapurple;
color: white; color: white;
padding: 8px 24px; padding: 8px 24px;
height: fit-content;
margin-left: auto;
} }
a { a {
@ -45,4 +51,7 @@ a {
ul { ul {
list-style-type: none; list-style-type: none;
display: flex;
padding: 0;
gap: 12px;
} }