-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
95 lines (92 loc) · 1.51 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
body{
font-family: 'Poppins', sans-serif;
margin: 0;
}
h1 {
font-size: 40px;
font-weight: 500;
}
h2{
}
.half-width {
width: 40%;
float: left;
margin-left: 5%;
padding-left: 2%;
}
.size {
padding-top: 80px;
}
.name-highlight {
color: mediumvioletred;
font-weight: 900;
font-size: 38px;
}
p {
color: dimgray;
font-size: smaller;
margin-bottom: 40px;
}
.link-button {
text-decoration: none;
padding: 10px 20px;
background-image: linear-gradient(45deg, mediumvioletred, rgb(233, 212, 27));
border-radius: 5px;
color: white;
}
img{
width: 100%;
}
.top-banner {
background-image: url(images/header-bg.png);
background-position: center;
background-size: cover;
}
section {
height: 500px;
padding: 100px 0px;
}
.biography-area {
background-image: url(images/biography-bg.png);
background-position: center;
background-size: cover;
}
.latest-area {
background-image: url(images/latest-work-bg.png);
background-position: center;
background-size: cover;
}
.container {
width: 1000px;
margin: auto;
}
.latest-center {
text-align: center;
margin-bottom: 50px;
}
.trice-width {
width: 30%;
float: left;
margin-left: 3%;
}
.footer-area {
background-image: url(images/footer-bg.png);
text-align: center;
background-position: center;
background-size: cover;
}
.massage{
color: dimgray;
}
h5{
font-weight: 300;
}
.batch {
background-image: linear-gradient(45deg, mediumvioletred, rgb(250, 134, 178));
display: inline-block;
padding: 20px 40px;
text-align: center;
}
footer p{
margin-bottom: 20px;
}