-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (117 loc) · 2.17 KB
/
style.css
File metadata and controls
119 lines (117 loc) · 2.17 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
119
body{
font-family: 'Poppins', sans-serif;
margin: 0;
}
.section-area{
height: 700px;
}
#header{
background-image: url("images/header-bg.png");
background-size: 100% 700px;
}
.half-width{
width: 40%;
float: left;
}
.first-half{
margin-left: 15%;
}
.half-width-text{
padding-top: 200px;
}
.half-width-text p{
padding: 20px 0px;
}
p{
color: #707070;
}
.half-width img{
width: 80%;
padding-top: 100px;
padding-bottom: 100px;
}
h2{
font-size: 35px;
color: #202428;
margin:0;
}
.name-highlight{
color: #ec4c7a;
}
.link-button{
padding: 10px 20px;
text-decoration: none;
text-transform: uppercase;
color: #ffffff;
font-size: 15px;
font-weight: 400;
background-image: linear-gradient(180deg,#ec5094,#ed4b73);
border-radius: 5px;
}
.link-button:hover{
font-weight: 700;
box-shadow: 0 14px 28px rgba(236, 80, 148,0.25), 0 10px 10px rgba(237, 75, 115,0.22);
}
#biography{
background-image: url("images/biography-bg.png");
background-size: 100% 700px;
}
#latest-work{
background-image: url("images/latest-work-bg.png");
background-size: 100% 450px;
}
#latest-work h2{
padding: 100px 0px;
text-align: center;
}
.latest-work-div{
margin: 0px 10%;
position: relative ;
display: flex;
justify-content: space-between;
}
.latest-work-img{
float: left;
width: 30%;
}
.latest-work-img img{
width: 100%;
}
#footer-area{
background-image: url("images/footer-bg.png");
background-size: 100% 700px;
text-align: center;
}
.footer-text{
margin-top: 120px;
}
.footer-text h2{
margin-bottom: 60px;
}
.footer-text h5{
font-size: 20px;
font-weight: 400;
width: 600px;
margin: 10px auto;
}
.footer-message{
width: 700px;
margin: 100px auto;
background-image: linear-gradient(180deg,#ec5094,#ed4b73);
border-radius: 10px;
padding: 15px 0px;
}
.footer-message a{
text-decoration: none;
}
.footer-message a:hover{
text-decoration: underline;
color: #ffffff;
font-style: oblique;
}
.footer-message p,a h3{
color: #ffffff;
}
.footer-credit{
padding: 20px 0px;
}