Skip to content

Commit

Permalink
update dalglob1, and begin documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
funderburkjim committed Mar 28, 2023
1 parent d3b0615 commit b0dd1a3
Show file tree
Hide file tree
Showing 3 changed files with 167 additions and 216 deletions.
112 changes: 112 additions & 0 deletions sample/dalglob1.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
/* dalglob1.css
extracted from dalglob1.php <style> elements 2023-03-20
*/
body {
color: black; background-color:#DBE4ED;
/*font-size: 14pt; */
}

/*#dataframe,#disp {*/
#disp {
color: black; background-color: white;
padding-left:5px;
/*padding-right:2.0em;*/
width: 600px;
height: 400px;
/* resize doesn't work on Firefox.
On Chrome, the size may be increased, but not decreased*/
/*resize: both; */
overflow: auto;
}

#accentdiv,#outputdiv,#inputdiv,#dictionary input,label {display:block;}

#preferences {
position:absolute;
left:100px;
top: 15px;
}
#preferences td {
/*border:1px solid black;*/
background-color:white;
padding-left:5px;
padding-right:5px;
text-align:center;
}
#citationdiv{
padding-bottom:5px;
}
#correction {

padding-left: 130px;
}
#dictlist {
margin-bottom:10px;
padding-left:5px;
color: black; background-color: white;
width: 600px;
height:200px;
/* resize doesn't work on Firefox.
On Chrome, the size may be increased, but not decreased*/
/*resize: both; */
overflow: auto;

}
div.sticky {
position: -webkit-sticky;
position: sticky;
z-index: 1;
top: 15px; /* 0; */
background-color: yellow;
padding: 5px;
font-size: 20px;
}
/* Experimental tab styling.
Ref: https://www.w3schools.com/howto/howto_js_tabs.asp
*/
/* Style the tab */
.tab {
overflow: auto; /*hidden;*/
border: 1px solid #ccc;
background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
display: none;
/*padding: 6px 12px;*/
margin: 15px;

border: 1px solid #ccc;
border-top: none;
}
/*
div.tabcontent {
overflow:auto;
}
*/
#disp > .tabcontent{
overflow:auto;
}
Loading

0 comments on commit b0dd1a3

Please sign in to comment.