-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
190 lines (182 loc) · 3.15 KB
/
style.css
File metadata and controls
190 lines (182 loc) · 3.15 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
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
scroll-behavior: smooth;
background-color: #000000;
color: white;
/* font-family: oswald; */
}
html,body {
width: 100%;
height: 100%;
}
main {
padding: 1vw 2.8vw;
width: 100%;
}
nav {
width: 100%;
height: 10vh;
display: flex;
align-items: center;
justify-content: space-between;
}
/* body::-webkit-scrollbar{
display: none;
} */
.logo h1 {
font-size: 1.3vw;
text-transform: uppercase;
font-size: 100;
font-family: sans-serif;
color: rgb(239, 236, 236);
}
nav h2 {
color: #B7B2B2;
font-size: 1.4vw;
font-weight: 100;
}
nav button {
border: none;
font-size: 1.5vw;
color: rgb(255, 255, 255);
text-transform: uppercase;
font-weight: 900;
}
.hero {
height: 97vh;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
gap: 2vw;
}
.hero h1 {
font-size: 11vw;
}
.heroContainer {
display: flex;
align-items: center;
gap: 4vw;
}
.contact i{
font-size: 3vw;
margin-right: 1.2vw;
}
.footers{
display: flex;
align-items: center;
gap: 33%;
}
.about{
font-size: 1.4vw;
}
.about span{
color: rgb(185, 183, 183);
}
.about p{
letter-spacing: 2px;
}
.projects div{
font-size: 2vw;
}
section{
width: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
gap: 4vw;
justify-content: center;
margin-top: 4vw;
}
.projects div h2 span{
color: #FD7777;
}
.overlays .elem{
border-top: 1px solid white;
font-size: 4vw;
border-bottom: 1px solid white;
padding: 3vw 1.5vw;
position: relative;
}
.elem h3 a{
font-size: 5vw;
color: white;
}
.overlays div img{
width: 25vw;
height: 40vh;
position: absolute;
z-index: 22;
border-radius: 10px;
opacity: 0;
transform: translate(-50%,-90%);
}
section a{
text-decoration: none;
font-size: 1.5vw;
color: #B7B2B2;
text-align: right;
}
#skills{
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
gap: 3.5vw;
}
.skillsHead{
font-size: 3.2vw;
}
.skillsHead div h4 span{
color: #FD7777;
}
.development p{
font-size: 2vw;
border: 1px solid white;
width: fit-content;
padding: 1.5vw;
border-radius: 2vw ;
}
.development div{
padding: 2vw 0;
display: flex;
align-items: center;
gap: 1.8vw;
}
.development div img{
width: 6.8vw;
}
aside{
width: 100%;
height: 70vh;
}
aside h5{
font-size: 4vw;
text-transform: uppercase;
}
aside p{
font-size: 2.2vw;
margin-top: 2vw;
width: 80%;
}
#contact h6{
font-size: 8vw;
/* text-transform: uppercase; */
}
#contact a{
text-decoration: none;
}
#linked{
color: aqua;
}
#twitter{
color: #FD7777;
}
#contact p{
text-align: center;
margin-top: 1.5vw;
}