Skip to content

Commit bd5adb3

Browse files
committed
Completed CSS
1 parent 0340109 commit bd5adb3

1 file changed

Lines changed: 45 additions & 0 deletions

File tree

Form-Controls/style.css

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
.container {
2+
display: flex;
3+
flex-direction: column;
4+
align-items: center;
5+
justify-content: center;
6+
border-style:solid;
7+
border-width: 5px;
8+
border-color:black;
9+
padding: 5px;
10+
margin: auto;
11+
margin-top: 50px;
12+
max-width: 400px;
13+
border-radius: 20px;
14+
font-size: 25px;
15+
}
16+
h1 {
17+
text-align: center;
18+
margin-bottom: 1px;
19+
}
20+
.label {
21+
display: block;
22+
font-weight: bold;
23+
font-size: 10px;
24+
padding-bottom: 25px;
25+
}
26+
input, select {
27+
display: block;
28+
font-size: 15px;
29+
padding: 0.5em;
30+
width: 100%;
31+
max-width: 300px;
32+
}
33+
button {
34+
display: block;
35+
font-size: 15px;
36+
padding: 0.5em;
37+
width: 50%;
38+
max-width: 300px;
39+
margin: 20px;
40+
background-color: rgb(105, 105, 226);
41+
border-radius: 10px;
42+
}
43+
footer{
44+
text-align: center;
45+
}

0 commit comments

Comments
 (0)