Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bellapanghulan_reading
Project
Project
Details
Activity
Releases
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ysabella Panghulan
bellapanghulan_reading
Commits
84e91c41
Commit
84e91c41
authored
Apr 24, 2023
by
Ysabella Panghulan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added form styling and edited base.css and home.css
parent
9463334d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
83 additions
and
2 deletions
+83
-2
base.css
bellapanghulan_reading/static/stylesheets/base.css
+1
-1
form.css
bellapanghulan_reading/static/stylesheets/form.css
+70
-0
home.css
bellapanghulan_reading/static/stylesheets/home.css
+12
-1
No files found.
bellapanghulan_reading/static/stylesheets/base.css
View file @
84e91c41
...
@@ -53,7 +53,7 @@ a:visited {
...
@@ -53,7 +53,7 @@ a:visited {
.links
{
.links
{
display
:
flex
;
display
:
flex
;
margin-top
:
5
rem
;
margin-top
:
2
rem
;
align-items
:
center
;
align-items
:
center
;
justify-content
:
center
;
justify-content
:
center
;
gap
:
1rem
;
gap
:
1rem
;
...
...
bellapanghulan_reading/static/stylesheets/form.css
0 → 100644
View file @
84e91c41
body
{
height
:
100vh
;
display
:
flex
;
align-items
:
center
;
background-color
:
#E9E3FE
;
}
.form
{
width
:
50%
;
margin-top
:
auto
;
margin-right
:
auto
;
margin-left
:
auto
;
padding
:
2rem
;
border-radius
:
0.5rem
;
background-color
:
white
;
}
.form
form
label
{
display
:
inline-block
;
vertical-align
:
middle
;
margin-bottom
:
10px
;
width
:
30%
;
text-align
:
left
;
padding-right
:
2rem
;
}
form
[
type
=
"text"
],
form
[
type
=
"number"
],
form
select
,
form
textarea
{
display
:
inline-block
;
vertical-align
:
middle
;
margin-bottom
:
10px
;
width
:
60%
;
padding
:
10px
;
border-radius
:
5px
;
border
:
1px
solid
#ccc
;
box-sizing
:
border-box
;
margin-bottom
:
20px
;
}
input
[
type
=
"submit"
]
{
display
:
block
;
background-color
:
#7448F6
;
margin
:
auto
;
padding
:
0.75rem
1.2rem
;
border-radius
:
0.4rem
;
cursor
:
pointer
;
border
:
1px
solid
#7448F6
;
transition
:
all
400ms
ease
;
color
:
white
;
}
input
[
type
=
"submit"
]
:hover
{
background-color
:
#E9E3FE
;
color
:
#7448F6
;
border-color
:
transparent
;
box-shadow
:
2px
2px
5px
rgba
(
0
,
0
,
0
,
0.3
);
transform
:
translateY
(
-5px
);
}
@media
only
screen
and
(
max-width
:
700px
)
{
form
[
type
=
"text"
],
form
[
type
=
"number"
],
form
select
,
form
textarea
{
width
:
100%
;
}
}
\ No newline at end of file
bellapanghulan_reading/static/stylesheets/home.css
View file @
84e91c41
...
@@ -4,7 +4,8 @@ body {
...
@@ -4,7 +4,8 @@ body {
margin-top
:
10%
;
margin-top
:
10%
;
background-image
:
url('../assets/home.png')
;
background-image
:
url('../assets/home.png')
;
background-repeat
:
no-repeat
;
background-repeat
:
no-repeat
;
background-size
:
cover
;
background-size
:
120%
;
background-position
:
right
top
;
}
}
header
{
header
{
...
@@ -25,6 +26,16 @@ header {
...
@@ -25,6 +26,16 @@ header {
font-weight
:
bold
;
font-weight
:
bold
;
}
}
.links
{
display
:
grid
;
grid-template-columns
:
1
fr
1
fr
;
}
.links
a
{
display
:
block
;
margin-top
:
0.5rem
;
}
@media
only
screen
and
(
max-width
:
1200px
)
{
@media
only
screen
and
(
max-width
:
1200px
)
{
header
{
header
{
display
:
flex
;
display
:
flex
;
...
...
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