summaryrefslogtreecommitdiffstats
path: root/base/server/share/webapps/pki/css/pki-common.css
diff options
context:
space:
mode:
Diffstat (limited to 'base/server/share/webapps/pki/css/pki-common.css')
-rw-r--r--base/server/share/webapps/pki/css/pki-common.css98
1 files changed, 98 insertions, 0 deletions
diff --git a/base/server/share/webapps/pki/css/pki-common.css b/base/server/share/webapps/pki/css/pki-common.css
new file mode 100644
index 000000000..42d0187a5
--- /dev/null
+++ b/base/server/share/webapps/pki/css/pki-common.css
@@ -0,0 +1,98 @@
+@font-face {
+ font-family: "Open Sans";
+ font-style: normal;
+ font-weight: normal;
+ src: url("/pki/font/OpenSans-Regular-webfont.woff");
+}
+
+@font-face {
+ font-family: "Open Sans";
+ font-style: normal;
+ font-weight: bold;
+ src: url("/pki/font/OpenSans-Bold-webfont.woff");
+}
+
+@font-face {
+ font-family: "Open Sans";
+ font-style: italic;
+ font-weight: normal;
+ src: url("/pki/font/OpenSans-Italic-webfont.woff");
+}
+
+@font-face {
+ font-family: "Open Sans";
+ font-style: italic;
+ font-weight: bold;
+ src: url("/pki/font/OpenSans-BoldItalic-webfont.woff");
+}
+
+
+
+* {
+ -moz-box-sizing: border-box;
+ -o-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ margin: 0;
+ padding: 0;
+ font-family: "Open Sans", sans-serif;
+}
+
+html, body {
+ min-height: 800px;
+ min-width: 850px;
+ font-size: 13.5px;
+ height: 100%;
+ color: #4d5258;
+}
+
+small {
+ font-size: 11.5px;
+}
+
+
+/* Tabbed Headers TODO: Bundle Open Sans */
+
+h1 {
+ font-family: "Open Sans", sans-serif;
+ font-size: 30px;
+}
+
+h2 {
+ font-family: "Open Sans", sans-serif;
+ font-size: 13px;
+}
+
+
+/* Regular Headers */
+
+h3 {
+ font-family: "Open Sans", sans-serif;
+ font-weight: lighter;
+ margin: 4px;
+ color: #4d5258;
+ font-size: 27.5px;
+}
+
+h4 {
+ font-family: "Open Sans", sans-serif;
+}
+
+
+/* Links */
+
+a {
+ color: #0099d3;
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+
+/* Focus */
+
+input, textarea {
+ outline: none;
+}