-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmycode.css
More file actions
100 lines (93 loc) · 1.78 KB
/
Copy pathmycode.css
File metadata and controls
100 lines (93 loc) · 1.78 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
.container {
display: flex;
flex-direction: column;
justify-content: left;
align-items: left;
}
.container div:first-child img {
display: flex;
flex-direction: row;
align-content: center;
justify-content: center;
width: 100px;
border-radius: 50px;
}
.myform {
display: flex;
flex-direction: column;
align-items: left;
justify-content: left;
background-color: #bd069e;
margin-top: 15px;
margin-bottom: 50px;
padding-left: 10px;
width: 500px;
height: 1080px;
}
.myform form:first-child {
display: flex;
flex-direction: column;
align-content: left;
justify-content: left;
}
.myform form:first-child label{
margin-top: 15px;
margin-left: 15px;
color: #ffffff;
font-family: serif;
margin-bottom: -15px;
font-size: 18px;
}
.myform img {
margin-top: 30px;
width: 30%;
align-self: center;
border-radius: 20px;
border-style: solid;
border-color: #38042E;
}
.paragraph {
margin-right: 10px;
color: #38042E;
}
.
input[type=text], select, textarea {
width: 95%; /* Full width */
height: 40px;
border: 1px solid #ccc; /* Gray border */
border-radius: 4px; /* Rounded borders */
box-sizing: border-box; /* Make sure that padding and width stays in place */
margin-left: 15px;
margin-right: 15px;
background-color: #ff80ec;
border-color: gray;
}
input[type=text] label{
margin-top: 15px;
margin-bottom: 15px;
}
input[type="checkbox"], label {
float: left;
line-height: 1.6em;
height: 1.6em;
margin: 0px 15px;
margin-left: 0px;
font-size: inherit;
}
textarea{
height: 100px;
resize: none;
background-color: #ff80ec;
}
input[type="Button"] {
width: 80px;
height: 30px;
align-self: left;
margin-left: 15px;
border-radius: 4px;
background-color: #ff80ec;
color: wheat;
font-size: 20px;
font-family: serif;
border-color: gray;
}