React form

This commit is contained in:
Tóth Ádám
2025-02-11 10:53:50 +01:00
parent d3ba52281d
commit b351fd9208
69 changed files with 46319 additions and 8118 deletions

View File

@@ -0,0 +1,43 @@
a {
text-decoration: none;
color: black;
}
body {
display: flex;
justify-content: center;
min-height: 100vh;
}
nav {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
background-color: white;
margin-bottom: 100px;
padding: 10px 0;
}
nav img {
margin-left: 10px;
cursor: pointer;
}
nav .menu {
display: flex;
align-items: center;
justify-content: space-evenly;
width: 600px;
}
main {
display: flex;
align-self: center;
flex-direction: column;
align-self: center;
width: 60%;
padding: 20px;
background-color: white;
border-radius: 20px;
}

View File

@@ -0,0 +1,24 @@
.container {
width: 20%;
}
h1 {
text-align: center;
}
button {
padding: 12px;
margin-bottom: 30px;
border-radius: 20px;
cursor: pointer;
transition: 400ms ease-in-out;
font-size: 1.1rem;
}
button:hover {
background-color: rgb(200, 200, 200);
}
.random-img {
border: 2px solid black;
}