-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
159 lines (121 loc) · 2.03 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/* common styles*/
*{
padding: 0;
margin: 0;
}
body{
font-family: 'Lato', sans-serif;
overflow-x: hidden;
}
/* End of common styles*/
/* landing section*/
.section-1{
background-image: url("./img/backgrounds/h_img.jpg");
background-position: center;
min-height: 100vh;
background-size: cover;
color: white;
position: relative;
}
#click-mouse {
margin-top: 70px;
};
/*End of landing section */
/* about us */
#about{
height: 30vh;
margin-bottom: 30px;
}
.about h1 {
font-weight: 700;
margin-top: 30px;
}
.about p{
font-weight: 500;
font-size: 18px;
}
/* End of about us */
/* services */
.services {
min-height: 45vh;
background-image: url("./img/backgrounds/s_image.jpg");
}
.services h1{
font-weight: 700;
}
.services p{
font-weight: 500;
font-size: 18px;
}
/* End of services */
/* Portfolio */
.image{
position: relative;
}
.project1-overlay,.project2-overlay,.project3-overlay,.project4-overlay,.project5-overlay,.project6-overlay,.project7-overlay,.project8-overlay {
background-color: rgb(39, 15, 15);
opacity: 0.6;
position: absolute;
display: none;
top: 0;
bottom: 0;
width: 90%;
}
.hover{
width: 80%;
height: 80%;
border-radius: 9px;
margin-left: 10%;
margin-top: 10%;
}
.hover h1{
font-size: 25px;
padding-top: 30%;
font-style:italic;
}
/* End of Portfolio */
/* contact */
#contact{
background-image: url("./img/backgrounds/c_image.jpg");
}
.input{
display: inline;
}
#contact input{
width:37%;
background-color: transparent;
border: 1px solid white;
border-radius: 0px;
box-shadow: transparent;
}
#email{
margin-left:5%;
color: white;
}
#email::placeholder{
color: white;
}
#name{
margin-left: 12%;
color :white;
}
#name::placeholder{
color: white;
}
#contact textarea{
background-color: transparent;
color: white;
width: 75%;
border: 1px solid white;
}
textarea::placeholder{
color: white;
}
#submit {
width: 75%;
height: 35px;
padding: 8px;
border-radius: 6px;
border: 1px solid white;
};
/* End of contact */