This commit is contained in:
rodert
2024-05-29 14:52:06 +00:00
parent 380fabae97
commit 1899dfaef4
2 changed files with 57 additions and 3 deletions
+54
View File
@@ -0,0 +1,54 @@
body {
background: lightblue;
}
p {
color: cadetblue;
}
h1 {
font-weight: bold;
}
h2 {
font-weight: bold;
}
a {
color: hotpink;
}
a:link, a:visited {
background-color: blue;
color: white;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
background-color: rgb(106, 255, 89);
}
il{
color: #17dd09;
}
.notaddingsoon{
color: #ff3d3d;
}
input{
background-color:rgb(29, 47, 206);
color: #ffffff ;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
}
input:hover input:active{
background-color: rgb(29, 47, 206);
}
input:link, input:visited {
background-color: rgb(29, 47, 206);
color: white;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
}
+3 -3
View File
@@ -1,5 +1,5 @@
<link rel="shortcut icon" type="x-icon" href="/game online.png"> <link rel="shortcut icon" type="x-icon" href="/game online.png">
<link rel="stylesheet" href="Roberts.css"> <link rel="stylesheet" href="home.css">
<title>schoolwork</title> <title>schoolwork</title>
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
@@ -10,13 +10,13 @@ display: flex;
} }
.sidebar { .sidebar {
width: 250px; width: 250px;
background-color: lightblue; background-color: lightskyblue;
padding: 20px; padding: 20px;
} }
.main-content { .main-content {
flex-grow: 1; flex-grow: 1;
padding: 20px; padding: 20px;
background-color: lightskyblue; background-color: lightblue;
} }
</style> </style>
</head> </head>