split installer CSS into its own file, since we only use it in one place
This commit is contained in:
parent
ecd7ec5b6b
commit
7a4f033cce
3 changed files with 40 additions and 40 deletions
|
@ -17,6 +17,7 @@ function die_nicely($title, $body, $code=0)
|
|||
<title>Shimmie</title>
|
||||
<link rel=\"shortcut icon\" href=\"ext/static_files/static/favicon.ico\">
|
||||
<link rel=\"stylesheet\" href=\"ext/static_files/style.css\" type=\"text/css\">
|
||||
<link rel=\"stylesheet\" href=\"ext/static_files/installer.css\" type=\"text/css\">
|
||||
</head>
|
||||
<body>
|
||||
<div id=\"installer\">
|
||||
|
|
39
ext/static_files/installer.css
Normal file
39
ext/static_files/installer.css
Normal file
|
@ -0,0 +1,39 @@
|
|||
#installer {
|
||||
background: #EEE;
|
||||
font-family: "Arial", sans-serif;
|
||||
font-size: 14px;
|
||||
width: 512px;
|
||||
margin: 16px auto auto;
|
||||
border: 1px solid black;
|
||||
border-radius: 16px;
|
||||
}
|
||||
#installer P {
|
||||
padding: 5px;
|
||||
}
|
||||
#installer A {
|
||||
text-decoration: none;
|
||||
}
|
||||
#installer A:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
#installer H1, #installer H3 {
|
||||
background: #DDD;
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
padding: 2px;
|
||||
}
|
||||
#installer H1 {
|
||||
border-radius: 16px 16px 0 0;
|
||||
}
|
||||
#installer H3 {
|
||||
border-top: 1px solid black;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
#installer TH {
|
||||
text-align: right;
|
||||
}
|
||||
#installer INPUT,
|
||||
#installer SELECT {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
|
@ -32,43 +32,3 @@ IMG.lazy {display: none;}
|
|||
margin: 8px;
|
||||
border: 1px solid #882;
|
||||
}
|
||||
|
||||
#installer {
|
||||
background: #EEE;
|
||||
font-family: "Arial", sans-serif;
|
||||
font-size: 14px;
|
||||
width: 512px;
|
||||
margin: 16px auto auto;
|
||||
border: 1px solid black;
|
||||
border-radius: 16px;
|
||||
}
|
||||
#installer P {
|
||||
padding: 5px;
|
||||
}
|
||||
#installer A {
|
||||
text-decoration: none;
|
||||
}
|
||||
#installer A:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
#installer H1, #installer H3 {
|
||||
background: #DDD;
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
padding: 2px;
|
||||
}
|
||||
#installer H1 {
|
||||
border-radius: 16px 16px 0 0;
|
||||
}
|
||||
#installer H3 {
|
||||
border-top: 1px solid black;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
#installer TH {
|
||||
text-align: right;
|
||||
}
|
||||
#installer INPUT,
|
||||
#installer SELECT {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
|
Reference in a new issue