Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 92e44fe

Browse files
committed
Project 0
1 parent bbb2d16 commit 92e44fe

File tree

3 files changed

+207
-15
lines changed

3 files changed

+207
-15
lines changed

‎.vscode/launch.json‎

Lines changed: 0 additions & 15 deletions
This file was deleted.

‎project0.css‎

Lines changed: 170 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
*{
2+
margin: 0%;
3+
padding: 0%;
4+
box-sizing: border-box;
5+
}
6+
html,body{
7+
height: 100%;
8+
width: 100%;
9+
overflow: hidden;
10+
}
11+
#main{
12+
display: flex;
13+
height: 100%;
14+
width: 100%;
15+
}
16+
#left{
17+
position: relative;
18+
width: 30%;
19+
height: 100%;
20+
background-color: rgb(158, 211, 240);
21+
22+
}
23+
#right{
24+
width: 70%;
25+
height: 100%;
26+
background-color:rgba(255, 68, 0, 0.607);
27+
}
28+
#leftbottom{
29+
background-color: white;
30+
position: absolute;
31+
bottom: 0%;
32+
width: 100%;
33+
height: 35%;
34+
display: flex;
35+
align-items: center;
36+
padding: 0px 60px;
37+
38+
}
39+
#right>img{
40+
width: 78%;
41+
position: absolute;
42+
bottom: 0%;
43+
left: 10%;
44+
}
45+
#nav{
46+
justify-content: space-between;
47+
align-items: center;
48+
display: flex;
49+
width: 90%;
50+
left: 5%;
51+
position: absolute;
52+
height: 70px;
53+
54+
}
55+
#nav>h1{
56+
color: rgb(255, 255, 255);
57+
font-size: 55px;
58+
font-family: Gilroy;
59+
letter-spacing: 4px;
60+
font-weight: 400;
61+
z-index: 999999;
62+
63+
}
64+
#panel{
65+
padding-left: 70px;
66+
width: 30%;
67+
display: flex;
68+
justify-content: space-between;
69+
}
70+
#panel a{
71+
72+
text-decoration: none;
73+
color: rgb(255, 255, 255);
74+
font-size: 20px;
75+
font-family: oswald;
76+
}
77+
#blend{
78+
position: absolute;
79+
mix-blend-mode:color-burn;
80+
color: rgba(0, 0, 0, 0.97);
81+
font-size: 180px;
82+
rotate: 27deg;
83+
top: 90%;
84+
left: 50%;
85+
transform: translate(-50%,-50%);
86+
letter-spacing: 50px;
87+
font-family: Anurati;
88+
}
89+
#left>h1{
90+
position: absolute;
91+
color: white;
92+
font-size: 120px;
93+
font-family: GIlroy;
94+
top: 20%;
95+
left: 20%;
96+
letter-spacing: 30px;
97+
}
98+
99+
#left>h2{
100+
padding-top: 10px;
101+
position: absolute;
102+
color: white;
103+
font-size: 30px;
104+
font-family: GIlroy;
105+
top: 36%;
106+
left: 20%;
107+
letter-spacing: 10px;
108+
text-decoration: underline;
109+
}
110+
#left>h3{
111+
padding-top: 30px;
112+
position: absolute;
113+
color: white;
114+
font-size: 20px;
115+
font-family: GIlroy;
116+
top: 40%;
117+
left: 20%;
118+
font-weight: 300;
119+
letter-spacing: 2px;
120+
}
121+
#left>a{
122+
padding-top: 30px;
123+
position: absolute;
124+
color: rgba(255, 68, 0, 0.607);
125+
font-size: 30px;
126+
font-family: GIlroy;
127+
top: 48%;
128+
left: 20%;
129+
font-weight: 900;
130+
letter-spacing: 2px;
131+
text-decoration: none;
132+
}
133+
#img{
134+
overflow: hidden;
135+
position:relative;
136+
height: 160px;
137+
width: 250px;
138+
background-color: rgba(255, 255, 255, 0.057);
139+
top: 15%;
140+
left: 70%;
141+
display: flex;
142+
justify-content: space-between;
143+
}
144+
.image{
145+
height: 90%;
146+
width: 48%;
147+
}
148+
.image img{
149+
width: 100%;
150+
height: 100%;
151+
object-fit: cover;
152+
}
153+
#icon{
154+
height: 150px;
155+
padding:10px 20px;
156+
width: 40px;
157+
display: flex;
158+
flex-direction: column;
159+
justify-content: space-between;
160+
align-items: center;
161+
border: 0px;
162+
border-radius: 20px;
163+
font-size: 25px;
164+
background-color: rgba(255, 255, 255, 0.292);
165+
left: 93%;
166+
top: 40%;
167+
position: absolute;
168+
color: white;
169+
}
170+

‎project0.html‎

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=, initial-scale=1.0" />
7+
<title>Project 0</title>
8+
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
9+
<link rel="stylesheet" href="project0.css" />
10+
</head>
11+
<body>
12+
<div id="main">
13+
<div id="nav">
14+
<h1>LEVIS.</h1>
15+
<div id="panel">
16+
<a href="*">HOME</a><a href="*">STORE</a><a href="*">ABOUT</a>
17+
</div>
18+
</div>
19+
<div id="left">
20+
<h1>LEVIS.</h1>
21+
<h2>since 2003</h2>
22+
<h3>From Sheriyans to the world.......</h3>
23+
<a href="*">Check the Shop</a>
24+
<div id="leftbottom"><p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Similique, veritatis fuga. Sint aut, suscipit repudiandae harum vel minus maxime natus quasi quam sed quos ab reiciendis doloribus, laborum ducimus!</p></div>
25+
</div>
26+
<div id="blend"><h1>LEVIS.</h1></div>
27+
<div id="right">
28+
<img
29+
src="https://o.remove.bg/downloads/53daf9d7-cd6a-4d17-a53f-11323e25be3e/wp1917451-removebg-preview.png"
30+
alt=""
31+
/>
32+
<div id="img"><div class="image" id="imgleft"><img src="https://wallpapers.com/images/high/childish-character-of-deadpool-25mas9x1dgscce98.webp" alt=""></div><div class="image" id="imgright"><img src="https://wallpapers.com/images/high/deadpool-watercolour-illustration-gdafp10n9p7wj1k5.webp" alt=""></div></div>
33+
<div id="icon"><i class="ri-microsoft-fill"></i><i class="ri-layout-2-fill"></i><i class="ri-layout-bottom-fill"></i><i class="ri-layout-masonry-fill"></i></div>
34+
</div>
35+
</div>
36+
</body>
37+
</html>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /