devbug/app/assets/dash_v1.css

114 lines
1.7 KiB
CSS
Raw Normal View History

2019-06-21 22:54:10 +00:00
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
html {
2019-06-23 17:17:35 +00:00
font-family: "Source Sans Pro", sans-serif;
2019-06-21 22:54:10 +00:00
}
2019-06-21 22:01:34 +00:00
table, th, td {
border: 1px solid #cccccc;
}
th, td {
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
2019-06-21 22:54:10 +00:00
}
pre, code {
2019-06-23 17:17:35 +00:00
font-family: "Source Code Pro", monospace;
2019-06-21 22:54:10 +00:00
font-size: 10pt;
}
a {
color: #004d4d;
}
2019-06-23 17:17:35 +00:00
.page-header {
background: #ccdddd;
width: 100%;
margin: 0;
padding: 0;
padding-left: 20px;
padding-right: 20px;
position: fixed;
top: 0;
left: 0;
}
.devbug-header {
background: #509d9d;
width: 100%;
position: relative;
margin: 0;
padding: 5px;
padding-left: 20px;
margin-left: -20px;
color: white;
}
.spacer {
min-height: 165px;
}
2019-06-21 22:54:10 +00:00
.navul {
list-style-type: none;
margin: 0;
2019-06-23 17:17:35 +00:00
padding: 0;
padding-left: 20px;
padding-top: 10px;
padding-bottom: 10px;
margin-left: -20px;
position: relative;
width: 100%;
background: #004d4d;
2019-06-21 22:54:10 +00:00
}
.navli {
display: inline;
background: #eee;
border-radius: 7px;
margin-right: 10px;
transition: all 0.5s ease;
}
.navli:hover {
2019-06-23 17:17:35 +00:00
background: #509d9d;
2019-06-21 22:54:10 +00:00
}
.nava {
text-decoration: none;
padding: 20;
transition: all 0.5s ease;
}
.nava:hover {
color: #eee;
2019-06-23 17:17:35 +00:00
}
2019-06-24 16:45:22 +00:00
.btn {
margin: 5;
margin-bottom: 20;
padding: 5;
padding-left: 10;
padding-right: 10;
background: #509d9d;
border-radius: 7px;
text-decoration: none;
color: white;
transition: all 0.5s ease;
}
.btn:hover {
background: #eee;
color: #307d7d;
}
2019-06-23 17:17:35 +00:00
pre {outline: 1px solid #ccc; padding: 5px; margin: 5px; }
.string { color: darkslateblue; }
.number { color: darkorange; }
.boolean { color: blue; }
.null { color: magenta; }
.key { color: green; }