forked from ekyna-learn/html-css-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.css
91 lines (90 loc) · 1.33 KB
/
contact.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
.back-img-container
{
height: 70px;
}
.back-img-container p
{
color: white;
font-size: 32px;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: 'Playfair Display', serif;
font-weight: normal;
}
main
{
display: inline-flex;
position: relative;
left: 50%;
transform: translateX(-50%);
margin-bottom: 80px;
}
.box1
{
width: 480px;
margin-top: 50px;
}
.box1 h3
{
font-size: 30px;
position: relative;
line-height: 30px;
margin: 0;
font-family: 'Playfair Display', serif;
font-weight: normal;
}
.box1 p
{
text-align: justify;
margin-top: 30px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
line-height: 22px;
}
.box2
{
width: 480px;
margin-left: 30px;
}
label
{
font-size: 16px;
font-family: 'Open Sans', sans-serif;
line-height: 24px;
}
label:not(.label-name)
{
display: inline-block;
margin-top: 16px;
}
input
{
width: 100%;
height: 40px;
padding: 10px 12px 10px 12px;
font-size: 16px;
font-family: 'Open Sans', sans-serif;
}
textarea
{
width: 100%;
height: 200px;
padding: 10px;
font-size: 16px;
font-family: 'Open Sans', sans-serif;
}
.submit-button
{
margin-top: 16px;
background-color: black;
color: white;
border: 0px;
line-height: 20px;
padding: 20px;
font-size: 24px;
font-weight: normal;
font-family: 'Playfair Display', serif;
}