Adding Form a Story project

This commit is contained in:
gauvainboiche
2025-07-29 16:14:37 +02:00
parent 1a9e0c8e2b
commit c15ff7a816
6 changed files with 301 additions and 0 deletions

56
form_a_story/style.css Normal file
View File

@@ -0,0 +1,56 @@
body {
background-color: rgb(255, 199, 64);
font-family: "Open Sans", Arial;
}
form {
line-height: 27px;
}
h2 {
font-size: 20px;
}
input[type="text"], input[type="number"] {
min-height: 15px;
border-radius: 5px;
border:1px solid #cccccc;
}
input[type="radio"] {
margin-left: 12px;
}
#main {
background-color: rgba(255,255,255,0.8);
text-align: center;
height: 80vh;
border-radius: 15px;
margin: 2% 10%;
overflow: auto;
}
#story {
padding: 0 3%;
}
#top {
background-color: rgb(255, 255, 255);
margin: 2% 10%;
border-radius: 15px;
}
#top img {
display: block;
width: 35%;
margin: 0 auto;
}
.italics {
font-style: italic;
}
.word {
font-weight: bold;
text-decoration: underline;
}