-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.css
More file actions
109 lines (93 loc) · 1.72 KB
/
header.css
File metadata and controls
109 lines (93 loc) · 1.72 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
.header-container {
height: 100%;
background-image: url(./Nav/Rectangle.png);
background-repeat: no-repeat;
background-position: center top;
}
.Nav {
padding-top: 20px;
color: var(--primary--font);
display: flex;
justify-content: space-between;
gap: 20px;
font-size: 36px;
}
.right-icon {
width: 175px;
text-align: right;
}
.banner-title h1 {
font-size: 112px;
text-transform: uppercase;
font-weight: bolder;
letter-spacing: 5px;
}
.banner-desc {
font-size: 20px;
text-transform: uppercase;
font-weight: bolder;
padding-top: 40px;
}
.banner-profile-container {
display: flex;
justify-content: space-between;
border-top: 1px solid var(--primary--font);
border-bottom: 1px solid var(--primary--font);
}
.banner-profile-container img {
height: 300px;
}
.banner-profile-desc {
display: flex;
flex-direction: column;
justify-content: end;
font-size: 30px;
}
.work-icon-container {
display: flex;
gap: 2px;
padding: 20px 0px;
}
.check-icon {
width: 50.9px;
height: 50.9px;
}
.banner-img-container {
background-color: white;
width: fit-content;
}
.complete-project-first h1 {
font-size: 152px;
}
.complete-project-first p {
font-size: 40px;
}
.complete-project-container {
display: flex;
justify-content: space-between;
text-transform: uppercase;
}
@media only screen and (min-width: 200px) and (max-width:576px){
.container{
padding: 0px 0px;
}
.Nav {
font-size: 16px;
}
.name-logo{
padding-left: 80px;
}
.complete-project-container {
flex-direction: column;
}
.banner-profile-container{
display: flex;
flex-direction: column;
}
.banner-img-container{
width:auto;
}
.banner-title h1{
font-size: 40px;
}
}