mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-10 05:29:30 -06:00
180 lines
2.1 KiB
CSS
180 lines
2.1 KiB
CSS
/*
|
|
GF RGL Browser
|
|
John J. Camiller, 2012
|
|
*/
|
|
.scroll-y
|
|
{
|
|
overflow-y:auto;
|
|
}
|
|
header h1
|
|
{
|
|
text-align:left;
|
|
margin:0 0 0.2em;
|
|
}
|
|
div[role='main']
|
|
{
|
|
overflow:hidden;
|
|
width:100%;
|
|
height:100%;
|
|
}
|
|
.pane
|
|
{
|
|
display:block;
|
|
height:100%;
|
|
}
|
|
.pane.left
|
|
{
|
|
width:170px;
|
|
float:left;
|
|
}
|
|
.pane.right
|
|
{
|
|
margin-left:170px;
|
|
}
|
|
.panel
|
|
{
|
|
padding:15px;
|
|
}
|
|
.button
|
|
{
|
|
cursor:pointer;
|
|
color:#00e;
|
|
padding:1px;
|
|
}
|
|
.button:hover
|
|
{
|
|
text-decoration:underline;
|
|
}
|
|
#language_select
|
|
{
|
|
font-size:1.1em;
|
|
}
|
|
#languages
|
|
{
|
|
margin:0.5em 0;
|
|
}
|
|
#modules a
|
|
{
|
|
display:block;
|
|
margin:0.1em;
|
|
text-decoration:none;
|
|
}
|
|
#modules a:hover
|
|
{
|
|
text-decoration:underline;
|
|
}
|
|
#tabbar *
|
|
{
|
|
display:inline-block;
|
|
}
|
|
#tabbar h2
|
|
{
|
|
margin: 0 1em;
|
|
font-size: 1em;
|
|
border:0;
|
|
}
|
|
.tab
|
|
{
|
|
cursor:pointer;
|
|
padding:0.5em 0.5em;
|
|
margin-right:0.5em;
|
|
display:inline-block;
|
|
text-transform:capitalize;
|
|
text-decoration:none;
|
|
font-family:sans-serif;
|
|
font-weight:bold;
|
|
font-size:0.9em;
|
|
}
|
|
#loading
|
|
{
|
|
position: fixed;
|
|
top: 1em;
|
|
right: 1em;
|
|
white-space: nowrap;
|
|
padding: 0.5em 1em;
|
|
border: 1px solid #F0C36D;
|
|
background: #F9EDBE;
|
|
color: black;
|
|
vertical-align: middle;
|
|
}
|
|
.scope
|
|
{
|
|
background:#fff;
|
|
color:#333;
|
|
}
|
|
.code
|
|
{
|
|
background:#444;
|
|
color:#eee;
|
|
}
|
|
.help
|
|
{
|
|
background:#ccc;
|
|
color:#000;
|
|
}
|
|
input#search
|
|
{
|
|
font-size:1em;
|
|
font-family:monospace;
|
|
width:25em;
|
|
padding:0.25em;
|
|
background:#eee;
|
|
}
|
|
#scope
|
|
{
|
|
padding: 1em;
|
|
}
|
|
#scope_list
|
|
{
|
|
font-family:monospace;
|
|
width:100%;
|
|
margin-top:1em;
|
|
}
|
|
#scope_list tr:hover
|
|
{
|
|
background:#f9f9f9;
|
|
}
|
|
#scope_list tr.indir
|
|
{
|
|
font-style:italic;
|
|
}
|
|
#scope_list tr.local td:nth-child(2)
|
|
{
|
|
font-weight:bold;
|
|
}
|
|
#scope_list th
|
|
{
|
|
text-align:left;
|
|
}
|
|
#scope_list th, #scope_list td
|
|
{
|
|
padding:0.4em;
|
|
border-style: solid;
|
|
border-width: 0 0 1px 0;
|
|
border-color: #ddd;
|
|
background:none;
|
|
white-space:nowrap;
|
|
}
|
|
#scope_list td:nth-child(6)
|
|
{
|
|
white-space:normal;
|
|
}
|
|
#code pre
|
|
{
|
|
margin:0;
|
|
color:#000;
|
|
overflow:auto;
|
|
}
|
|
dt
|
|
{
|
|
font-weight:bold;
|
|
}
|
|
footer
|
|
{
|
|
padding: 0.4em;
|
|
color:#333;
|
|
text-align:right;
|
|
border-top:1px solid #ccc;
|
|
font-size:0.9em;
|
|
}
|