diff options
Diffstat (limited to 'project/assets/css')
| -rw-r--r-- | project/assets/css/accordian.css | 39 | ||||
| -rw-r--r-- | project/assets/css/numberwall.css | 38 | ||||
| -rw-r--r-- | project/assets/css/steelman.css | 39 | 
3 files changed, 77 insertions, 39 deletions
diff --git a/project/assets/css/accordian.css b/project/assets/css/accordian.css new file mode 100644 index 0000000..9c52e5d --- /dev/null +++ b/project/assets/css/accordian.css @@ -0,0 +1,39 @@ + + +div.accordian { +    margin: 1em 2em 2em 2em; +} + + +.accordian > input[name="collapse"] { +    display: none; +} + + +.accordian .hidden_content { +    overflow: hidden; +    height: 0; +} + + +.accordian label { +    color: #ffffff; +    cursor: pointer; +    font-weight: normal; +    padding: 0.5em; +    background: #808080; +} + + +.accordian label:hover, +.accordian label:focus { +    color: #ffffff; +    background: #000000; +} + + +.accordian > input[name="collapse"]:checked ~ .hidden_content { +    height: auto; +} + + diff --git a/project/assets/css/numberwall.css b/project/assets/css/numberwall.css new file mode 100644 index 0000000..8efcea8 --- /dev/null +++ b/project/assets/css/numberwall.css @@ -0,0 +1,38 @@ + + +table { +    margin: 2em auto 2em auto; +} + + + + +table.rule { +    border: 1px solid gray; +    width: 90%; +} + +table.rule th { +    border: 1px solid gray; +    width: 33%; +} + +table.rule td { +    padding: 0.5em 1em 0.5em 1em; +    border: 1px solid gray; +} + + + + +table.wall { +    border: none; +    text-align: center; +} + +table.wall td { +    padding: 0.5em 0.4em 0.5em 0.4em; +    border: none; +} + + diff --git a/project/assets/css/steelman.css b/project/assets/css/steelman.css index 14bc84b..5b6b5c9 100644 --- a/project/assets/css/steelman.css +++ b/project/assets/css/steelman.css @@ -1,44 +1,5 @@ -div.accordian { -    margin: 1em 2em 2em 2em; -} - - -.accordian > input[name="collapse"] { -    display: none; -} - - -.accordian .hidden_content { -    overflow: hidden; -    height: 0; -} - - -.accordian label { -    color: #ffffff; -    cursor: pointer; -    font-weight: normal; -    padding: 0.5em; -    background: #808080; -} - - -.accordian label:hover, -.accordian label:focus { -    color: #ffffff; -    background: #000000; -} - - -.accordian > input[name="collapse"]:checked ~ .hidden_content { -    height: auto; -} - - - -  table {      margin: 2em auto 2em auto;      max-width: 60em;  | 
