Advanced HTML & CSS

This commit is contained in:
2026-02-23 23:30:22 +05:30
parent cad6ab1103
commit e8a1edacb9
2 changed files with 77 additions and 0 deletions

32
Week-02/Day_01/style.css Normal file
View File

@@ -0,0 +1,32 @@
body {
font-family: Arial;
background: #f2f2f2;
}
.wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
width: 500px;
margin: 50px auto;
}
.form {
display: flex;
flex-direction: column;
gap: 10px;
background: white;
padding: 15px;
}
.display {
display: flex;
flex-direction: column;
gap: 10px;
background: white;
padding: 15px;
}
input, button {
padding: 8px;
}