Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Web Visualization
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AB0410
Web Visualization
Commits
5da973ad
Commit
5da973ad
authored
2 years ago
by
AB0410
Browse files
Options
Downloads
Patches
Plain Diff
WV8 done
parent
52805af9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
WV8/index.html
+19
-0
19 additions, 0 deletions
WV8/index.html
WV8/screens.css
+18
-0
18 additions, 0 deletions
WV8/screens.css
WV8/styles.css
+17
-12
17 additions, 12 deletions
WV8/styles.css
with
54 additions
and
12 deletions
WV8/index.html
+
19
−
0
View file @
5da973ad
...
@@ -21,6 +21,25 @@
...
@@ -21,6 +21,25 @@
<h2>
Article
</h2>
<h2>
Article
</h2>
<p>
This is a paragraph.
</p>
<p>
This is a paragraph.
</p>
</article>
</article>
<form
class=
"box"
>
<h2>
Form
</h2>
<p>
First name
</p>
<input
type=
"text"
>
<p>
Last name
</p>
<input
type=
"text"
>
<input
type=
"submit"
>
</form>
<article
class=
"box"
>
<h2>
Advertisement
</h2>
<p>
This is some ad text to scam u into buying
<br>
our
<strong><i>
product
</i></strong>
</p>
<p>
Buy now?
<input
type=
"checkbox"
></p>
</article>
</main>
</main>
</body>
</body>
</html>
</html>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
WV8/screens.css
0 → 100644
+
18
−
0
View file @
5da973ad
/* Mobile Styles */
@media
only
screen
and
(
max-width
:
400px
)
{
.container
{
grid-template-columns
:
1
fr
!important
;
}
}
/* Tablet Styles */
@media
only
screen
and
(
min-width
:
401px
)
and
(
max-width
:
960px
)
{
.container
{
grid-template-columns
:
1
fr
!important
;
}
}
/* Desktop Styles */
@media
only
screen
and
(
min-width
:
961px
)
{
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
WV8/styles.css
+
17
−
12
View file @
5da973ad
@import
url(variables.css)
;
@import
url(variables.css)
;
@import
url(screens.css)
;
body
{
body
{
margin
:
0
;
margin
:
0
;
padding
:
0
;
padding
:
0
;
line-height
:
1.5
;
line-height
:
1.5
;
font-family
:
Arial
,
Helvetica
,
sans-serif
;
font-family
:
Arial
,
Helvetica
,
sans-serif
;
}
}
header
{
header
{
background-color
:
var
(
--header-bg-color
);
background-color
:
var
(
--header-bg-color
);
color
:
var
(
--header-txt-color
);
}
}
.container
{
.container
{
margin
:
20px
auto
;
margin
:
20px
auto
;
display
:
grid
;
display
:
grid
;
grid-template-columns
:
1
fr
1
fr
;
grid-template-columns
:
1
fr
1
fr
;
grid-gap
:
20px
;
grid-gap
:
20px
;
align-items
:
center
;
align-items
:
center
;
width
:
var
(
--container-width
);
width
:
var
(
--container-width
);
}
}
.container
.box
{
.container
.box
{
background-color
:
var
(
--box-bg-color
);
background-color
:
var
(
--box-bg-color
);
padding
:
var
(
--box-padding
);
padding
:
var
(
--box-padding
);
color
:
var
(
--box-main-color
);
color
:
var
(
--box-main-color
);
...
@@ -29,10 +30,14 @@ body {
...
@@ -29,10 +30,14 @@ body {
var
(
--box-shadow-v-offset
)
var
(
--box-shadow-v-offset
)
var
(
--box-shadow-blur
);
var
(
--box-shadow-blur
);
border
:
1px
solid
var
(
--box-main-color
);
border
:
1px
solid
var
(
--box-main-color
);
}
}
header
#main-header
h1
{
.container
.box
p
{
color
:
var
(
--main-txt-color
);
}
header
#main-header
h1
{
padding
:
0
;
padding
:
0
;
margin
:
0
;
margin
:
0
;
}
color
:
var
(
--header-txt-color
);
\ No newline at end of file
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment