mirror of
https://github.com/lubuntu-team/lists-html.git
synced 2025-05-09 07:51:29 +00:00
remove standalone stylesheet, since it can't be referenced externally. This means each page will have its own set of styles.
This commit is contained in:
parent
65ca4475c5
commit
4b1612f987
@ -1,110 +0,0 @@
|
|||||||
body {
|
|
||||||
font-size: 14px;
|
|
||||||
font-family: Ubuntu, sans-serif;
|
|
||||||
/* background-color: rgb(14, 10, 54); */
|
|
||||||
background-color: #FFFFFF;
|
|
||||||
/* color: #AAAAAA; */
|
|
||||||
color: #555555;
|
|
||||||
margin: 0;
|
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: #1E73BE;
|
|
||||||
font-size: 13px;
|
|
||||||
}
|
|
||||||
|
|
||||||
body div {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
form center {
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
address {
|
|
||||||
background-color: #0074B9;
|
|
||||||
color: #BBBBBB;
|
|
||||||
padding: .5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
address a {
|
|
||||||
color: #FFFFFF;
|
|
||||||
font-style: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.header {
|
|
||||||
background-color: #0074B9;
|
|
||||||
color: #FFFFFF;
|
|
||||||
height: 4em;
|
|
||||||
padding: .5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.header img {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.section {
|
|
||||||
padding: 0 0 0 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.section-header {
|
|
||||||
color: #0074B9;
|
|
||||||
padding: 0 0 0 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 1.5em;
|
|
||||||
font-weight: 300;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.header img {
|
|
||||||
height: 4em;
|
|
||||||
margin: .5em 0 0 .5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
form div {
|
|
||||||
margin: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
input[type=text], input[type=email], input[type=password] {
|
|
||||||
-webkit-appearance: none;
|
|
||||||
-moz-appearance: none;
|
|
||||||
display: block;
|
|
||||||
margin: 0;
|
|
||||||
width: 20rem;
|
|
||||||
max-width: 30rem;
|
|
||||||
height: 2rem;
|
|
||||||
line-height: 3rem;
|
|
||||||
font-size: 2rem;
|
|
||||||
border: 1px solid #bbb;
|
|
||||||
-webkit-border-radius: 5px;
|
|
||||||
-moz-border-radius: 5px;
|
|
||||||
border-radius: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
input[type=submit] {
|
|
||||||
margin: 1rem 0 1rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
button[type=submit] {
|
|
||||||
-webkit-appearance: none;
|
|
||||||
-moz-appearance: none;
|
|
||||||
display: block;
|
|
||||||
margin: 1.5rem;
|
|
||||||
font-size: 1rem;
|
|
||||||
line-height: 2.5rem;
|
|
||||||
color: #333333;
|
|
||||||
font-weight: bold;
|
|
||||||
height: 2.5em;
|
|
||||||
width: 20rem;
|
|
||||||
max-width: 30rem;
|
|
||||||
background: #fdfdfd;
|
|
||||||
/* background: -moz-linear-gradient(top, #fdfdfd 0%, #bebebe 100%);
|
|
||||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fdfdfd), color-stop(100%,#bebebe)); background: -webkit-linear-gradient(top, #fdfdfd 0%,#bebebe 100%); background: -o-linear-gradient(top, #fdfdfd 0%,#bebebe 100%); background: -ms-linear-gradient(top, #fdfdfd 0%,#bebebe 100%); background: linear-gradient(to bottom, #fdfdfd 0%,#bebebe 100%); */
|
|
||||||
border: 1px solid #bbbbbb;
|
|
||||||
-webkit-border-radius: 10px;
|
|
||||||
-moz-border-radius: 10px;
|
|
||||||
border-radius: 10px;
|
|
||||||
}
|
|
@ -4,7 +4,126 @@
|
|||||||
|
|
||||||
<head>
|
<head>
|
||||||
<title><MM-List-Name> Info Page</title>
|
<title><MM-List-Name> Info Page</title>
|
||||||
<link rel="stylesheet" type="text/css" href="./lubuntu_style.css">
|
<style>
|
||||||
|
body {
|
||||||
|
font-size: 14px;
|
||||||
|
font-family: Ubuntu, sans-serif;
|
||||||
|
/* background-color: rgb(14, 10, 54); */
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
/* color: #AAAAAA; */
|
||||||
|
color: #555555;
|
||||||
|
margin: 0;
|
||||||
|
text-rendering: optimizeLegibility;
|
||||||
|
}
|
||||||
|
|
||||||
|
body hr {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #1E73BE;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body div {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
form center {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
body :nth-child(2) {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
address {
|
||||||
|
background-color: #0074B9;
|
||||||
|
color: #BBBBBB;
|
||||||
|
padding: .5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
address a {
|
||||||
|
color: #FFFFFF;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.header {
|
||||||
|
background-color: #0074B9;
|
||||||
|
color: #FFFFFF;
|
||||||
|
height: 4em;
|
||||||
|
padding: .5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.header img {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.section {
|
||||||
|
padding: 0 0 0 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.section-header {
|
||||||
|
color: #0074B9;
|
||||||
|
padding: 0 0 0 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 1.5em;
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.header img {
|
||||||
|
height: 4em;
|
||||||
|
margin: .5em 0 0 .5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
form div {
|
||||||
|
margin: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=text], input[type=email], input[type=password] {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
-moz-appearance: none;
|
||||||
|
display: block;
|
||||||
|
margin: 0;
|
||||||
|
width: 20rem;
|
||||||
|
max-width: 30rem;
|
||||||
|
height: 2rem;
|
||||||
|
line-height: 3rem;
|
||||||
|
font-size: 2rem;
|
||||||
|
border: 1px solid #bbb;
|
||||||
|
-webkit-border-radius: 5px;
|
||||||
|
-moz-border-radius: 5px;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=submit] {
|
||||||
|
margin: 1rem 0 1rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
button[type=submit] {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
-moz-appearance: none;
|
||||||
|
display: block;
|
||||||
|
margin: 1.5rem;
|
||||||
|
font-size: 1rem;
|
||||||
|
line-height: 2.5rem;
|
||||||
|
color: #333333;
|
||||||
|
font-weight: bold;
|
||||||
|
height: 2.5em;
|
||||||
|
width: 20rem;
|
||||||
|
max-width: 30rem;
|
||||||
|
background: #fdfdfd;
|
||||||
|
/* background: -moz-linear-gradient(top, #fdfdfd 0%, #bebebe 100%);
|
||||||
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fdfdfd), color-stop(100%,#bebebe)); background: -webkit-linear-gradient(top, #fdfdfd 0%,#bebebe 100%); background: -o-linear-gradient(top, #fdfdfd 0%,#bebebe 100%); background: -ms-linear-gradient(top, #fdfdfd 0%,#bebebe 100%); background: linear-gradient(to bottom, #fdfdfd 0%,#bebebe 100%); */
|
||||||
|
border: 1px solid #bbbbbb;
|
||||||
|
-webkit-border-radius: 10px;
|
||||||
|
-moz-border-radius: 10px;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user