Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
Simple-responsive-layout
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vinod
Simple-responsive-layout
Commits
48f3a136
Commit
48f3a136
authored
May 19, 2023
by
Vinod
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated with Flex
parent
1514e03a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
190 additions
and
94 deletions
+190
-94
style.css
CSS/style.css
+152
-78
desktop.html
desktop.html
+38
-16
No files found.
CSS/style.css
View file @
48f3a136
*
{
margin
:
0
;
padding
:
0
;
box-sizing
:
border-box
;
}
html
,
...
...
@@ -12,104 +11,106 @@ body {
font-family
:
system-ui
,
-apple-system
,
BlinkMacSystemFont
,
'Segoe UI'
,
Roboto
,
Oxygen
,
Ubuntu
,
Cantarell
,
'Open Sans'
,
'Helvetica Neue'
,
sans-serif
;
}
.
row
>
div
:nth-child
(
1
)
{
.
container
>
div
:nth-child
(
1
)
{
background-color
:
#41ca6e
;
}
.
row
>
div
:nth-child
(
2
)
{
.
container
>
div
:nth-child
(
2
)
{
background-color
:
#fab153
;
}
.
row
>
div
:nth-child
(
3
)
{
.
container
>
div
:nth-child
(
3
)
{
background-color
:
#7277d5
;
}
.
row
>
div
:nth-child
(
4
)
{
.
container
>
div
:nth-child
(
4
)
{
background-color
:
#f87d51
;
}
.
row
>
div
:nth-child
(
5
)
{
.
container
>
div
:nth-child
(
5
)
{
background-color
:
#ed5466
;
}
.
row
>
div
:nth-child
(
6
)
{
.
container
>
div
:nth-child
(
6
)
{
background-color
:
#4ec2e7
;
}
.container
{
display
:
flex
;
flex-wrap
:
wrap
;
margin
:
0
auto
;
padding
:
0
;
height
:
100%
;
width
:
100%
;
}
.hline
{
width
:
10rem
;
height
:
1.5px
;
background
:
white
;
margin
:
10px
0
10px
0
;
.card
{
min-width
:
calc
(
100%
/
3
);
/* height: 50vh; */
min-height
:
calc
(
100%
/
2
);
}
.
row
{
.
wrapper
{
display
:
flex
;
box-sizing
:
border-box
;
flex-direction
:
row
;
width
:
100%
;
flex-wrap
:
wrap
;
align-items
:
center
;
}
.
row
.column
{
display
:
flex
;
flex-basis
:
calc
(
100%
/
3
)
;
align-items
:
flex-start
;
min-height
:
50%
;
.
main-logo
{
max-width
:
100%
;
width
:
5%
;
margin
:
25px
0
0
25px
;
position
:
absolute
;
}
.desc
{
position
:
absolute
;
margin
:
15rem
0
0
5rem
;
width
:
60%
;
}
.hline
{
width
:
55%
;
height
:
1.5px
;
background
:
white
;
margin
:
2%
0
2%
25%
;
}
.title
{
color
:
white
;
font-weight
:
lighter
;
margin-left
:
25%
;
margin-top
:
3%
;
}
.offer
{
color
:
white
;
text-transform
:
uppercase
;
font-weight
:
lighter
;
font-size
:
smaller
;
margin-left
:
25%
;
}
.logo
{
position
:
absolute
;
width
:
50px
;
margin
:
11rem
0
0
5rem
;
width
:
15%
;
margin-left
:
25%
;
margin
-top
:
30%
;
}
.main-logo
{
display
:
flex
;
flex-direction
:
row
;
max-width
:
100%
;
width
:
15%
;
margin
:
25px
0
0
25px
;
.image-block
{
width
:
40%
;
}
.column
.images
{
display
:
flex
;
max-width
:
100%
;
width
:
35%
;
margin
:
5rem
0
0
19rem
;
.image-block
.images
{
width
:
80%
;
margin
:
20%
0
0
8%
;
}
.row
.column
.image1
{
max-width
:
100%
;
width
:
13%
;
margin-left
:
18rem
;
position
:
absolute
;
margin-top
:
10rem
;
.image-block
.image1
{
width
:
80%
;
margin
:
55%
0
0
5%
;
}
.row
.column
.image2
{
display
:
flex
;
max-width
:
100%
;
width
:
55%
;
margin
:
12rem
0
0
14rem
;
.image-block
.image2
{
float
:
left
;
width
:
100%
;
margin-top
:
80%
;
}
.only-mobile
{
...
...
@@ -127,51 +128,51 @@ body {
.logo-mobile
img
{
filter
:
grayscale
(
1
)
invert
(
1
);
margin
:
20px
0
20px
15px
;
margin
:
5%
0
5%
5%
;
height
:
22px
;
}
.mobile-container
{
width
:
100%
;
height
:
100%
;
min-height
:
65em
;
background-color
:
#41ca6e
;
position
:
relative
;
}
.mobile-image
{
width
:
50%
;
margin
:
2rem
5rem
0
5rem
;
margin
:
10%
0
0
25%
;
position
:
absolute
;
}
.mobile-logo
{
width
:
15%
;
margin
:
2rem
0
1rem
4rem
;
margin
:
10%
0
5%
15%
;
}
.mobile-title
{
text-transform
:
uppercase
;
font-weight
:
650
;
font-size
:
larger
;
margin
:
0
0
0
4rem
;
margin
:
0
0
0
15%
;
}
.mobile-hline
{
width
:
14rem
;
width
:
60%
;
height
:
1.5px
;
background
:
white
;
margin
:
10px
0
10px
4rem
;
margin
:
3%
0
3%
15%
;
}
.mobile-offer
{
text-transform
:
uppercase
;
font-weight
:
50
;
font-size
:
17px
;
margin
:
0
0
0
4rem
;
margin
:
0
0
0
15%
;
}
.arrow
{
position
:
absolute
;
margin
:
5rem
0
0
1.5rem
;
margin
:
15%
0
0
5%
;
border
:
solid
white
;
border-width
:
0
2px
2px
0
;
display
:
inline-block
;
...
...
@@ -180,16 +181,11 @@ body {
.right
{
transform
:
rotate
(
-45deg
);
-webkit-transform
:
rotate
(
-45deg
)
;
margin-left
:
85%
;
}
.left
{
transform
:
rotate
(
135deg
);
-webkit-transform
:
rotate
(
135deg
);
}
.right-arrow
{
margin-left
:
17rem
;
}
.dot
{
...
...
@@ -198,34 +194,111 @@ body {
background-color
:
white
;
border-radius
:
50%
;
position
:
absolute
;
margin
:
20rem
0
0
10rem
;
margin
:
80%
0
0
45%
;
}
.circle
{
position
:
absolute
;
width
:
10px
;
width
:
5px
;
padding-bottom
:
5px
;
border-radius
:
50%
;
border
:
3px
solid
white
;
margin
:
20rem
0
0
11rem
;
margin
:
80%
0
0
49%
;
}
/* Media Query for Mobile Devices */
@media
(
max-width
:
480px
)
{
.container
{
display
:
none
;
}
@media
screen
and
(
max-width
:
768px
)
{
.only-mobile
{
width
:
100%
;
display
:
contents
;
}
}
.row
.column
{
/* Media Query for low resolution Tablets, Ipads */
@media
(
min-width
:
480px
)
and
(
max-width
:
768px
)
{
.main-logo
{
width
:
10%
;
margin
:
20px
;
position
:
absolute
;
}
.card
{
width
:
50%
;
min-height
:
31em
;
}
}
@media
screen
and
(
max-width
:
480px
)
{
.row
.column
{
display
:
none
;
.wrapper
{
width
:
100%
;
flex-direction
:
column
;
}
.
only-mobile
{
.
desc
{
width
:
100%
;
display
:
contents
;
}
.image-block
{
width
:
50%
;
}
.image-block
.images
{
width
:
65%
;
}
.image-block
.image1
{
width
:
75%
;
margin
:
15%
15%
0
0
;
}
.image-block
.image2
{
float
:
none
;
margin
:
30%
30%
0
0
;
}
.logo
{
margin
:
25%
0
0
25%
;
}
.logo-small
{
width
:
25%
;
margin
:
20%
0
0
25%
;
}
}
/* Media Query for Tablets Ipads portrait mode */
@media
(
min-width
:
769px
)
and
(
max-width
:
992px
)
{
.card
{
width
:
50%
;
min-height
:
21em
;
}
.desc
{
margin-top
:
15%
;
}
}
/* Media Query for Laptops and Desktops */
@media
(
min-width
:
992px
)
and
(
max-width
:
1280px
)
{
.card
{
width
:
33.33%
;
min-height
:
22em
;
}
.wrapper
{
margin-top
:
2em
;
}
}
/* Media Query for Large screens */
@media
(
min-width
:
1280px
)
{
.card
{
width
:
33.33%
;
min-height
:
25em
;
}
/* .wrapper {
margin-top: 1em;
} */
}
\ No newline at end of file
desktop.html
View file @
48f3a136
...
...
@@ -5,16 +5,17 @@
<meta
charset=
"UTF-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
Document
</title>
<title>
Responsive Layout(without Grid
&
Flex)
</title>
<link
rel=
"stylesheet"
href=
"/CSS/style.css"
>
</head>
<body>
<div
class=
"
row
"
>
<div
class=
"c
olumn
"
>
<div
class=
"
container
"
>
<div
class=
"c
ard
"
>
<img
class=
"main-logo"
src=
"/Logos/logo-aoc.png"
alt=
"logo-aoc"
>
<
img
class=
"logo"
src=
"/Logos/logo-f-secure.png"
alt=
"logo-f-secure
"
>
<
div
class=
"wrapper
"
>
<div
class=
"desc"
>
<img
class=
"logo"
src=
"/Logos/logo-f-secure.png"
alt=
"logo-f-secure"
>
<div
class=
"title"
>
<p>
Astonishing
<br>
features requires
<br>
worry-free security
</p>
</div>
...
...
@@ -23,12 +24,16 @@
<p>
1 year free mobile security
</p>
</div>
</div>
<div
class=
"image-block"
>
<img
class=
"image1"
src=
"/Images/image-1.png"
alt=
"image-1"
>
</div>
</div>
</div>
<div
class=
"c
olumn
"
>
<
img
class=
"logo"
src=
"/Logos/logo-digitainment.png"
alt=
"logo-f-secure
"
>
<div
class=
"c
ard
"
>
<
div
class=
"wrapper
"
>
<div
class=
"desc"
>
<img
class=
"logo"
src=
"/Logos/logo-digitainment.png"
alt=
"logo-f-secure"
>
<div
class=
"title"
>
<p>
Be hooked!
</p>
</div>
...
...
@@ -37,12 +42,16 @@
<p>
2000+ movies from bollywood
</p>
</div>
</div>
<div
class=
"image-block"
>
<img
class=
"images"
src=
"/Images/image-2.png"
alt=
"image-2"
>
</div>
</div>
</div>
<div
class=
"c
olumn
"
>
<
img
class=
"logo"
src=
"/Logos/logo-adaptxt.png"
alt=
"logo-f-secure
"
>
<div
class=
"c
ard
"
>
<
div
class=
"wrapper
"
>
<div
class=
"desc"
>
<img
class=
"logo"
src=
"/Logos/logo-adaptxt.png"
alt=
"logo-f-secure"
>
<div
class=
"title"
>
<p>
The best things in
<br>
life are free
<br></p>
</div>
...
...
@@ -51,12 +60,16 @@
<p>
free mobile pouch
</p>
</div>
</div>
<div
class=
"image-block"
>
<img
class=
"images"
src=
"/Images/image-3.png"
alt=
"image-3"
>
</div>
</div>
</div>
<div
class=
"c
olumn
"
>
<
img
class=
"logo"
src=
"/Logos/logo-hungama.png"
alt=
"logo-f-secure
"
>
<div
class=
"c
ard
"
>
<
div
class=
"wrapper
"
>
<div
class=
"desc"
>
<img
class=
"logo"
src=
"/Logos/logo-hungama.png"
alt=
"logo-f-secure"
>
<div
class=
"title"
>
<p>
The thump
<br>
never ends here
</p>
</div>
...
...
@@ -65,12 +78,16 @@
<p>
1000's of songs
</p>
</div>
</div>
<div
class=
"image-block"
>
<img
class=
"images"
src=
"/Images/image-4.png"
alt=
"image-4"
>
</div>
</div>
</div>
<div
class=
"c
olumn
"
>
<
img
class=
"logo"
src=
"/Logos/logo-adaptxt.png"
alt=
"logo-f-secure
"
>
<div
class=
"c
ard
"
>
<
div
class=
"wrapper
"
>
<div
class=
"desc"
>
<img
class=
"logo"
src=
"/Logos/logo-adaptxt.png"
alt=
"logo-f-secure"
>
<div
class=
"title"
>
<p>
Being globally you
</p>
</div>
...
...
@@ -79,12 +96,16 @@
<p>
21 indian
&
foreign languages
</p>
</div>
</div>
<div
class=
"image-block"
>
<img
class=
"images"
src=
"/Images/image-5.png"
alt=
"image-5"
>
</div>
</div>
</div>
<div
class=
"c
olumn
"
>
<
img
class=
"logo"
src=
"/Logos/logo-read-where.png"
alt=
"logo-f-secure
"
>
<div
class=
"c
ard
"
>
<
div
class=
"wrapper
"
>
<div
class=
"desc"
>
<img
class=
"logo"
src=
"/Logos/logo-read-where.png"
alt=
"logo-f-secure"
>
<div
class=
"title"
>
<p>
For the wise
</p>
</div>
...
...
@@ -93,9 +114,12 @@
<p>
1000 pts discount
<br>
on subscription
</p>
</div>
</div>
<div
class=
"image-block"
>
<img
class=
"image2"
src=
"/Images/image-6.png"
alt=
"image-6"
>
</div>
</div>
</div>
</div>
<!-- Mobile UI -->
...
...
@@ -117,9 +141,7 @@
</div>
<div
class=
"arrow left"
></div>
<div
class=
"right-arrow"
>
<div
class=
"arrow right"
></div>
</div>
<img
class=
"mobile-image"
src=
"/Images/image-1.png"
alt=
"image-1"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment