-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
43 lines (43 loc) · 805 Bytes
/
Copy pathstylesheet.css
File metadata and controls
43 lines (43 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
* {
box-sizing: border-box;
font-family: 'Lexend Deca', sans-serif;
}
.header {
margin: auto;
width: 450px;
height: 100px;
display: flex;
background-color: orange;
border-radius: 4px;
justify-content: space-around;
}
h1 {
margin: auto;
padding: 10px 5px;
color: white;
}
fieldset {
margin: auto;
padding: 20px;
width: 400px;
height: 530px;
border: 2px solid black;
border-radius: 4px;
justify-content: space-around;
}
input[type=text], input[type=mail], input[type=password], textarea[id=bio] {
width: 75%;
margin: auto;
padding: 8px 5px;
border: 2px solid black;
border-radius: 4px;
}
.submit {
box-shadow: 1px 2px 2px;
background-color: #2CFF50;
border: 4px;
border-radius: 4px;
color: white;
padding: 8px 16px;
margin: 4px 2px;
}