-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLab2.css
More file actions
118 lines (101 loc) · 1.75 KB
/
Lab2.css
File metadata and controls
118 lines (101 loc) · 1.75 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* Global Layout Set-up */
* {
margin: 0;
padding: 0;
box-sizing: border-box
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin-top: 15px;
}
.container-item {
width: 400px;
margin: 15px;
background-color: #9cbc2b;
}
div {
padding-bottom: 1px;
}
form {
display: flex;
background-color: #9cbc2b;
max-width: 30%;
border-radius: 5px;
}
h3 {
padding: 1em;
}
label {
padding-left: .5em;
padding-right: 2em;
border-radius: 1px;
padding-bottom: 1px;
border-color:white;
}
label.pcode {
padding-right: 19px;
}
textarea {
margin: 0px;
width: 226px;
height: 100px;
border-radius: 5px;
border-style: none;
}
input {
padding-top: 5px;
padding-bottom: 5px;
border-radius: 5px;
margin-right: 1px;
border-color: white;
padding-left: 5px;
padding-right: 50px;
border-style: none;
}
input[type="radio"] {
margin: 14px -8px 7px 6px;
min-width: 0px;
}
input[type="address"] {
min-height: 90px;
}
input[type="submit"] {
color: #384313;
}
input[type="text"] {
font-weight:lighter;
font-style: italic;
}
input[type="tel"] {
font-weight:lighter;
font-style: italic;
}
fieldset {
min-width: 100%;
max-width: 30%;
border: 2px solid #e3ebc2;
border-width: 1px;
border-radius: 5px;
}
.bkcolor {
background-color:#b9cf6a;
padding:10px;
margin-bottom: 3px;
}
button {
padding: 12px 53px 12px 53px;
color: #FFF;
background-color: #384313;
font-size: 18px;
text-align: center;
font-style: normal;
border-radius: 36px;
margin: 10px 0 10px 0;
border-style: none;
}
.btn {
margin: 0 29%;
}