Compare commits
2 Commits
3056650dd3
...
a80414a603
| Author | SHA1 | Date | |
|---|---|---|---|
| a80414a603 | |||
| 851ba123d8 |
@ -6,5 +6,12 @@
|
|||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
<div class="whspahTitle">
|
||||||
|
<h1>WHSPAH Web Interface</h1>
|
||||||
|
<h3>A simple locally hosted web interface for WHSPAH.</h3>
|
||||||
|
</div>
|
||||||
|
<div class="contentBox">
|
||||||
|
<p>Just pretend there's a bunch of buttons and sliders here. I'm just kind of yapping to test the CSS. Wow look at that slider and those buttons. So cool.</p>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@ -2,4 +2,25 @@ body {
|
|||||||
/* Anything but light mode, please. */
|
/* Anything but light mode, please. */
|
||||||
background-color: #000000;
|
background-color: #000000;
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
.whspahTitle{
|
||||||
|
background-color: #363636;
|
||||||
|
text-align: center;
|
||||||
|
width: max-content;
|
||||||
|
margin:0 auto;
|
||||||
|
margin-bottom: 1%;
|
||||||
|
padding: 1%;
|
||||||
|
border-radius: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contentBox{
|
||||||
|
background-color: #363636;
|
||||||
|
text-align: center;
|
||||||
|
width: max-content;
|
||||||
|
margin:0 auto;
|
||||||
|
margin-bottom: 1%;
|
||||||
|
padding: 1%;
|
||||||
|
border-radius: 25px;
|
||||||
|
max-width: 80%;
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user