-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster1.css
120 lines (95 loc) · 1.51 KB
/
master1.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
body {
width: 100%;
margin: 0;
padding: 0;
border: none;
outline: none;
vertical-align: baseline;
font-size: 100%;
background-image: url('Images/image-back1.jpg');
background-size: cover;
}
.wrapper {
width: 90%;
margin: 0 auto;
}
.navBar::after {
content: "";
clear: both;
display: table;
}
html {
font-family: Poppins;
}
h1 {
color: #fff;
font-size: 48px;
}
p {
color: #fff;
font-size: 30px;
font-weight: 100;
}
/* header */
header {
margin: 0px 0px 0px 100px;
}
header p {
width: 100%;
margin-top: 0;
}
/* .work */
.work {
text-align: center;
width: 100%;
}
.work img {
margin: 1%;
width: 35%;
}
/* header2 */
.header2 {
margin: 130px 0 80px 40px;
}
/* navbar */
nav {
height: 40px;
line-height: 40px;
}
nav a img {
vertical-align: middle;
width: 40px;
height: 40px;
}
nav a:nth-child(2) {
float: right;
}
/* .work2 */
.work2 {
width: 100%;
text-align: center;
}
.work2 img {
margin: 1%;
width: 64%;
}
/* footer */
footer p {
text-align: center;
color: grey;
margin: 50px auto;
}
/* Responsiveness */
@media only screen and (max-width: 991px) {
header {
text-align: left;
margin: 100px 0 100px 30px;
}
header h1 {
font-size: 36px;
}
header p {
font-size: 12px;
width: 90%;
}
}