forked from ekyna-learn/html-css-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
83 lines (82 loc) · 1.19 KB
/
styles.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
.main
{
display: inline-flex;
position: relative;
left: 50%;
transform: translateX(-50%);
}
.box-1
{
width: 480px;
margin-top: 50px;
}
.box-2
{
width: 480px;
margin-left: 30px;
margin-top: 50px;
}
.box-2 a
{
display: block;
text-align: right;
text-decoration: none;
color: black;
line-height: 30px;
margin: 0;
margin-bottom: 30px;
font-family: 'Playfair Display', serif;
}
.box-1 h2
{
font-size: 30px;
position: relative;
line-height: 30px;
margin: 0;
font-family: 'Playfair Display', serif;
}
.box-1 p
{
text-align: justify;
font-size: 16px;
margin: 0;
margin-top: 30px;
font-family: 'Open Sans', sans-serif;
}
.img-container
{
width: 480px;
background-color: red;
}
.img-container img
{
height: 149px;
width: 225px;
display: block;
float: left;
}
.img-container img:nth-child(odd)
{
margin: 0 30px 30px 0;
}
.contact-container
{
text-align: center;
margin-top: 50px;
margin-bottom: 80px;
padding-bottom: 0;
margin-top: 20px;
}
.contact-container a
{
font-size: 23px;
background-color: #2C2C2C;
color: white;
border: 0;
font-family: 'Playfair Display', serif;
font-weight: normal;
height: 60px;
width: 192px;
padding: 20px;
text-decoration: none;
}