You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/blogs/style.css
+13-11Lines changed: 13 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -71,24 +71,26 @@ body {
71
71
}
72
72
73
73
.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(19111),rgb(11388)); /* 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:0015px0rgb(000); /* 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(19111),rgb(11388)); /* 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:0015px0rgb(000); /* box-shadow makes a drop shadow. confusing */
82
+
display: table-cell; /* Changes the way how elemnts are organised */
83
83
}
84
84
85
85
/* things with . affect classes, but if you add a space, that allows you to customise the childs of a class/element only. */
86
86
87
87
.navbara {
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 */
90
91
}
91
92
93
+
92
94
.modimg {
93
95
width:180px; /* Width of the element */
94
96
margin-left:0px; /* Margin Left, is the margin for the left side of the content */
Copy file name to clipboardExpand all lines: pages/mods/style.css
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -77,18 +77,20 @@ body {
77
77
width:100%; /* width: 100% makes this fill the screen */
78
78
background-color:rgb(137,3,3); /* Background-Color sets the background color of an element */
79
79
background:linear-gradient(rgb(19111),rgb(11388)); /* 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 */
81
81
box-shadow:0015px0rgb(000); /* box-shadow makes a drop shadow. confusing */
82
82
display: table-cell; /* Changes the way how elemnts are organised */
83
83
}
84
84
85
85
/* things with . affect classes, but if you add a space, that allows you to customise the childs of a class/element only. */
86
86
87
87
.navbara {
88
+
padding:10px;
88
89
color:rgb(255,255,255); /* Color is text color */
89
90
text-decoration: none; /* Text decoration is underlines, etc */
90
91
}
91
92
93
+
92
94
.modimg {
93
95
width:180px; /* Width of the element */
94
96
margin-left:0px; /* Margin Left, is the margin for the left side of the content */
Copy file name to clipboardExpand all lines: pages/tabs/style.css
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -78,18 +78,20 @@ body {
78
78
width:100%; /* width: 100% makes this fill the screen */
79
79
background-color:rgb(137,3,3); /* Background-Color sets the background color of an element */
80
80
background:linear-gradient(rgb(19111),rgb(11388)); /* 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 */
82
82
box-shadow:0015px0rgb(000); /* box-shadow makes a drop shadow. confusing */
83
83
display: table-cell; /* Changes the way how elemnts are organised */
84
84
}
85
85
86
86
/* things with . affect classes, but if you add a space, that allows you to customise the childs of a class/element only. */
87
87
88
88
.navbara {
89
+
padding:10px;
89
90
color:rgb(255,255,255); /* Color is text color */
90
91
text-decoration: none; /* Text decoration is underlines, etc */
91
92
}
92
93
94
+
93
95
.modimg {
94
96
width:180px; /* Width of the element */
95
97
margin-left:0px; /* Margin Left, is the margin for the left side of the content */
Copy file name to clipboardExpand all lines: style.css
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -78,14 +78,15 @@ body {
78
78
width:100%; /* width: 100% makes this fill the screen */
79
79
background-color:rgb(137,3,3); /* Background-Color sets the background color of an element */
80
80
background:linear-gradient(rgb(19111),rgb(11388)); /* 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 */
82
82
box-shadow:0015px0rgb(000); /* box-shadow makes a drop shadow. confusing */
83
83
display: table-cell; /* Changes the way how elemnts are organised */
84
84
}
85
85
86
86
/* things with . affect classes, but if you add a space, that allows you to customise the childs of a class/element only. */
87
87
88
88
.navbara {
89
+
padding:10px;
89
90
color:rgb(255,255,255); /* Color is text color */
90
91
text-decoration: none; /* Text decoration is underlines, etc */
0 commit comments