aboutsummaryrefslogtreecommitdiffstats
path: root/style.css
diff options
context:
space:
mode:
authorClyhtsuriva Synck <clyhtsuriva>2020-03-01 14:56:37 +0100
committerClyhtsuriva Synck <clyhtsuriva>2020-03-01 14:56:37 +0100
commitcedf7dfd2eedf0af7a3e5d990b715bb5caea1e29 (patch)
tree9b96a33dccada1e942d93ac968804aae48554ede /style.css
parentb105bceeb426f5faca4933303a0cf01e083f73c5 (diff)
downloadstaticWebsite-Project-cedf7dfd2eedf0af7a3e5d990b715bb5caea1e29.tar.gz
staticWebsite-Project-cedf7dfd2eedf0af7a3e5d990b715bb5caea1e29.tar.bz2
staticWebsite-Project-cedf7dfd2eedf0af7a3e5d990b715bb5caea1e29.zip
initial files
Diffstat (limited to '')
-rw-r--r--style.css52
1 files changed, 52 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..c3a5be2
--- /dev/null
+++ b/style.css
@@ -0,0 +1,52 @@
+body {
+ background-color: Gray;
+ }
+h1 {
+ text-align: center;
+ }
+h1,h2 {color: darkblue;
+ }
+ a {
+ text-decoration: none;
+ }
+a:hover
+ {
+ color: red;
+ }
+.tab1 th {
+ color: white;
+ background-color: black;
+ padding:10px;
+}
+.tab2 th{
+ color: white;
+ background-color: darkblue;
+ padding:10px;
+}
+.tab1 td{
+ border: solid black;
+ padding:10px;
+ }
+.tab2 td{
+ border: solid darkblue;
+ padding:10px;
+ }
+.list {
+ position : fixed;
+ right: 10px;
+ bottom: 10px;
+ background : darkblue;
+ border : solid black;
+}
+.list a {
+ color : white;
+ }
+.list a:hover {color:green;}
+input:focus {
+ background-color: cyan;
+}
+.menu {
+ position:fixed;
+ right: 10px;
+ top: 10px;
+}