-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (85 loc) · 1.56 KB
/
style.css
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
*{
margin: 0;
padding: 0;
}
body{
font-family: Arial, Helvetica, sans-serif;
background-color: black;
}
.container{
max-height: 1000px;
margin: auto;
}
header{
background-color: #48c5ce;
text-align: center;
color: white;
padding: 10px;
}
.title{
font-size: 26px;
}
section{
padding: 200px;
background-image: url('people.jpg');
background-size: cover;
overflow: hidden;
}
.formContainer{
max-width: 230px;
background-color: #FFFFFFBB;
padding: 20px ;
float: right;
}
h2{
font-size: 16px;
}
.mb{
margin-bottom: 15px;
}
input, select{
width: 100%;
box-sizing: border-box;
padding: 10px;
border: none;
margin-bottom: 10px;
}
input[type="submit"]{
color: white;
background-color: #48c5ce;
font-weight: bold;
}
select{
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
background-image: url(arrow.jpg);
background-repeat: no-repeat;
background-position: calc(100% - 10px) center;
}
footer{
background: #202121;
padding: 40px;
text-align: center;
}
.picture{
width: 160px;
}
.description{
display: inline-block;
color: white;
max-width: 40%;
margin-left: 40px;
text-align: left;
}
.description p, .description h3{
margin-bottom: 20px;
}
.description h3{
font-size: 24px;
}
@media screen and (max-width: 400px) {
.formContainer{
max-width: 100%;
}
}