move body style to stylesheet,

remove button borders

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
Arthur Lu 2022-12-04 16:43:34 -08:00
parent 2532574910
commit b36334a90f
3 changed files with 7 additions and 6 deletions

View File

@ -6,7 +6,7 @@
<title>tronnet - contact</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body style="background-color:black;">
<body>
<h1 class = "std-text">tronnet</h1>
<h2 class = "std-text">Affordable custom server solutions.</h2>

View File

@ -6,7 +6,7 @@
<title>tronnet - home</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body style="background-color:black;">
<body>
<h1 class = "std-text">tronnet</h1>
<h2 class = "std-text">Affordable custom server solutions.</h2>

View File

@ -1,3 +1,7 @@
body {
background-color:black;
}
.std-text {
font-family: monospace;
color: white;
@ -42,10 +46,7 @@ p {
padding: 10px; /* Some padding */
margin: 0px 5px 0px 5px;
cursor: pointer; /* Pointer/hand icon */
}
.btn-group button:not(:last-child) {
border-right: none; /* Prevent double borders */
border: none;
}
.btn-group:after {