@import rules file references and font references corrected
This commit is contained in:
parent
a6254899fe
commit
6c03ba6389
@ -14,26 +14,26 @@ last change: 2023-11-01
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@import url(common.css);
|
@import url('common.css');
|
||||||
@import url(globals.css);
|
@import url('globals.css');
|
||||||
|
|
||||||
/* ===== VARIOUS ===== */
|
/* ===== VARIOUS ===== */
|
||||||
@viewport { width: device-width }
|
@viewport { width: device-width }
|
||||||
|
|
||||||
.buttonbar input {
|
.buttonbar input {
|
||||||
padding: .3em;
|
padding: .3em;
|
||||||
background: #bdbdbd url(../imgs/buttonsh.png) repeat-x
|
background: #bdbdbd url('../imgs/buttonsh.png') repeat-x
|
||||||
}
|
}
|
||||||
|
|
||||||
.buttonbar input:hover {
|
.buttonbar input:hover {
|
||||||
padding: .3em;
|
padding: .3em;
|
||||||
background: #d3d3d3 url(../imgs/buttonsh2.png) repeat-x
|
background: #d3d3d3 url('../imgs/buttonsh2.png') repeat-x
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ===== HEADERS TAGS ===== */
|
/* ===== HEADERS TAGS ===== */
|
||||||
h1,
|
h1,
|
||||||
h2 {
|
h2 {
|
||||||
font-family: 'book antiqua', georgia, garamond, times, 'times new roman', serif;
|
font-family: "book antiqua", georgia, garamond, times, "times new roman", serif;
|
||||||
margin: auto
|
margin: auto
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -169,7 +169,7 @@ input#subject {
|
|||||||
}
|
}
|
||||||
|
|
||||||
textarea.code {
|
textarea.code {
|
||||||
font-family: 'Lucida Console', Monaco, monospace;
|
font-family: "Lucida Console", Monaco, monospace;
|
||||||
font-size: 90%
|
font-size: 90%
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ last change: 2023-11-01
|
|||||||
/* ===== GENERAL (redefinition HTML tag) ===== */
|
/* ===== GENERAL (redefinition HTML tag) ===== */
|
||||||
html {
|
html {
|
||||||
font-size: 85%;
|
font-size: 85%;
|
||||||
font-family: 'Lucida Grande', 'Trebuchet MS', arial, Helvetica, sans-serif;
|
font-family: "Lucida Grande", "Trebuchet MS", arial, Helvetica, sans-serif;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0
|
padding: 0
|
||||||
}
|
}
|
||||||
@ -27,7 +27,7 @@ body {
|
|||||||
font-size: 100%;
|
font-size: 100%;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
/* text-align: center; */
|
/* text-align: center; */
|
||||||
background: white url(../imgs/backshade.png) repeat-x;
|
background: white url('../imgs/backshade.png') repeat-x;
|
||||||
color: black;
|
color: black;
|
||||||
width: 100%
|
width: 100%
|
||||||
}
|
}
|
||||||
@ -74,7 +74,7 @@ blockquote {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pre, code {
|
pre, code {
|
||||||
font-family: 'Lucida Console', Monaco, monospace;
|
font-family: "Lucida Console", Monaco, monospace;
|
||||||
font-size: 90%
|
font-size: 90%
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -122,7 +122,7 @@ input:hover, input:focus, textarea:hover, textarea:focus {
|
|||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
font-size: 100%;
|
font-size: 100%;
|
||||||
font-family: 'Lucida Grande', 'Trebuchet MS', arial, Helvetica, sans-serif;
|
font-family: "Lucida Grande", "Trebuchet MS", arial, Helvetica, sans-serif;
|
||||||
width: 99%;
|
width: 99%;
|
||||||
margin-top: .1em;
|
margin-top: .1em;
|
||||||
margin-bottom: 1em
|
margin-bottom: 1em
|
||||||
@ -152,7 +152,7 @@ h1 {
|
|||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
/* Titles of the entry */
|
/* Titles of the entry */
|
||||||
font-family: 'book antiqua', georgia, garamond, times, 'times new roman', serif;
|
font-family: "book antiqua", georgia, garamond, times, "times new roman", serif;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
@ -184,7 +184,7 @@ h4 { font-size: 1.2em }
|
|||||||
/* ===== HEAD ===== */
|
/* ===== HEAD ===== */
|
||||||
#head {
|
#head {
|
||||||
clear: both;
|
clear: both;
|
||||||
font-family: 'book antiqua', georgia, garamond, times, 'times new roman', serif;
|
font-family: "book antiqua", georgia, garamond, times, "times new roman", serif;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
padding: 7em 0.6em 0.5em 0.5em;
|
padding: 7em 0.6em 0.5em 0.5em;
|
||||||
border-radius: 1em;
|
border-radius: 1em;
|
||||||
|
@ -16,11 +16,11 @@ last change: 2023-11-01
|
|||||||
|
|
||||||
|
|
||||||
/* imports common style ruleset */
|
/* imports common style ruleset */
|
||||||
@import url(common.css);
|
@import url('common.css');
|
||||||
@import url(globals.css);
|
@import url('globals.css');
|
||||||
|
|
||||||
/* imports column (where widgets usually go) rules */
|
/* imports column (where widgets usually go) rules */
|
||||||
@import url(column.css);
|
@import url('column.css#);
|
||||||
|
|
||||||
/* defines rules specific to the front page */
|
/* defines rules specific to the front page */
|
||||||
body { margin: 80px 0 10px 0 }
|
body { margin: 80px 0 10px 0 }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user