-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (94 loc) · 1.65 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
*{
margin: 0px;
padding: 0px;
}
body{
background-color: black;
font-family: Arial, Helvetica, sans-serif;
background-image: url(./images/people2.jpg);
}
.alignment{
max-width: 1000px;
margin: auto;
box-sizing: border-box;
}
header{
background-color: #48C5CE;
text-align: center;
color: white;
padding: 10px;
}
.title{
font-size: 26px;
}
section{
padding: 20px;
background-image: url('./images/people.jpg');
overflow: hidden;
background-size: cover;
}
.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{
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
background-image: url('./images/arrow.jpg');
background-repeat: no-repeat;
background-position: calc(100% - 10px) center;
}
footer{
background-color: #151616;
padding: 40px;
text-align: center;
}
.picture{
width: 160px;
}
.description{
display: inline-block;
text-align: left;
color: white;
max-width: 40%;
margin-left: 40px;
}
.description p, .description h3{
margin-bottom: 20px;
}
.description h3{
font-size: 24px;
}
@media only screen and (max-width: 600px) {
.formContainer {
float: none;
margin: auto;
}
.description{
display: inline;
}
.title{
font-size: 20px;
}
}