Skip to content

Commit 7425f9d

Browse files
authored
updated
1 parent 5249fef commit 7425f9d

File tree

4 files changed

+21
-14
lines changed

4 files changed

+21
-14
lines changed

pages/blogs/style.css

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -71,24 +71,26 @@ body {
7171
}
7272

7373
.navbar {
74-
position: fixed; /* position: fixed makes this always on screen */
75-
height: 20px; /* height sets the height */
76-
top: 0; /* top sets the top position */
77-
width: 100%; /* width: 100% makes this fill the screen */
78-
background-color: rgb(137, 3, 3); /* Background-Color sets the background color of an element */
79-
background: linear-gradient(rgb(191 1 1),rgb(113 8 8)); /* Background can also set the background color of an element, but can do way more. I use it here for just in case browser don't support linear-gradient */
80-
padding: 10px; /* Padding is the area inside of the box that is padded */
81-
box-shadow: 0 0 15px 0 rgb(0 0 0); /* box-shadow makes a drop shadow. confusing */
82-
display: table-cell; /* Changes the way how elemnts are organised */
74+
position: fixed; /* position: fixed makes this always on screen */
75+
height: 20px; /* height sets the height */
76+
top: 0; /* top sets the top position */
77+
width: 100%; /* width: 100% makes this fill the screen */
78+
background-color: rgb(137, 3, 3); /* Background-Color sets the background color of an element */
79+
background: linear-gradient(rgb(191 1 1),rgb(113 8 8)); /* Background can also set the background color of an element, but can do way more. I use it here for just in case browser don't support linear-gradient */
80+
/* padding: 10px; /* Padding is the area inside of the box that is padded */
81+
box-shadow: 0 0 15px 0 rgb(0 0 0); /* box-shadow makes a drop shadow. confusing */
82+
display: table-cell; /* Changes the way how elemnts are organised */
8383
}
8484

8585
/* things with . affect classes, but if you add a space, that allows you to customise the childs of a class/element only. */
8686

8787
.navbar a {
88-
color: rgb(255, 255, 255); /* Color is text color */
89-
text-decoration: none; /* Text decoration is underlines, etc */
88+
padding: 10px;
89+
color: rgb(255, 255, 255); /* Color is text color */
90+
text-decoration: none; /* Text decoration is underlines, etc */
9091
}
9192

93+
9294
.mod img {
9395
width: 180px; /* Width of the element */
9496
margin-left: 0px; /* Margin Left, is the margin for the left side of the content */

pages/mods/style.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,18 +77,20 @@ body {
7777
width: 100%; /* width: 100% makes this fill the screen */
7878
background-color: rgb(137, 3, 3); /* Background-Color sets the background color of an element */
7979
background: linear-gradient(rgb(191 1 1),rgb(113 8 8)); /* Background can also set the background color of an element, but can do way more. I use it here for just in case browser don't support linear-gradient */
80-
padding: 10px; /* Padding is the area inside of the box that is padded */
80+
/* padding: 10px; /* Padding is the area inside of the box that is padded */
8181
box-shadow: 0 0 15px 0 rgb(0 0 0); /* box-shadow makes a drop shadow. confusing */
8282
display: table-cell; /* Changes the way how elemnts are organised */
8383
}
8484

8585
/* things with . affect classes, but if you add a space, that allows you to customise the childs of a class/element only. */
8686

8787
.navbar a {
88+
padding: 10px;
8889
color: rgb(255, 255, 255); /* Color is text color */
8990
text-decoration: none; /* Text decoration is underlines, etc */
9091
}
9192

93+
9294
.mod img {
9395
width: 180px; /* Width of the element */
9496
margin-left: 0px; /* Margin Left, is the margin for the left side of the content */

pages/tabs/style.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,18 +78,20 @@ body {
7878
width: 100%; /* width: 100% makes this fill the screen */
7979
background-color: rgb(137, 3, 3); /* Background-Color sets the background color of an element */
8080
background: linear-gradient(rgb(191 1 1),rgb(113 8 8)); /* Background can also set the background color of an element, but can do way more. I use it here for just in case browser don't support linear-gradient */
81-
padding: 10px; /* Padding is the area inside of the box that is padded */
81+
/* padding: 10px; /* Padding is the area inside of the box that is padded */
8282
box-shadow: 0 0 15px 0 rgb(0 0 0); /* box-shadow makes a drop shadow. confusing */
8383
display: table-cell; /* Changes the way how elemnts are organised */
8484
}
8585

8686
/* things with . affect classes, but if you add a space, that allows you to customise the childs of a class/element only. */
8787

8888
.navbar a {
89+
padding: 10px;
8990
color: rgb(255, 255, 255); /* Color is text color */
9091
text-decoration: none; /* Text decoration is underlines, etc */
9192
}
9293

94+
9395
.mod img {
9496
width: 180px; /* Width of the element */
9597
margin-left: 0px; /* Margin Left, is the margin for the left side of the content */

style.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,15 @@ body {
7878
width: 100%; /* width: 100% makes this fill the screen */
7979
background-color: rgb(137, 3, 3); /* Background-Color sets the background color of an element */
8080
background: linear-gradient(rgb(191 1 1),rgb(113 8 8)); /* Background can also set the background color of an element, but can do way more. I use it here for just in case browser don't support linear-gradient */
81-
padding: 10px; /* Padding is the area inside of the box that is padded */
81+
/* padding: 10px; /* Padding is the area inside of the box that is padded */
8282
box-shadow: 0 0 15px 0 rgb(0 0 0); /* box-shadow makes a drop shadow. confusing */
8383
display: table-cell; /* Changes the way how elemnts are organised */
8484
}
8585

8686
/* things with . affect classes, but if you add a space, that allows you to customise the childs of a class/element only. */
8787

8888
.navbar a {
89+
padding: 10px;
8990
color: rgb(255, 255, 255); /* Color is text color */
9091
text-decoration: none; /* Text decoration is underlines, etc */
9192
}

0 commit comments

Comments
 (0)