diff --git a/src/aboutme.html b/src/aboutme.html new file mode 100644 index 0000000..92d47f5 --- /dev/null +++ b/src/aboutme.html @@ -0,0 +1,4 @@ + + + Test + \ No newline at end of file diff --git a/src/css/app.css b/src/css/app.css new file mode 100644 index 0000000..8e9b69f --- /dev/null +++ b/src/css/app.css @@ -0,0 +1,98 @@ +.prevent-select{ + -webkit-user-select: none; /* Safari */ + -ms-user-select: none; /* IE 10 and IE 11 */ + user-select: none; /* Standard syntax */ +} + + +.retro-window{ + margin: 1em; + padding: 0; + width: fit-content; +} + +.retro-border{ + border-style: solid; + border-width: .2em; + border-top-color: lightgray; + border-left-color: lightgray; + border-right-color: gray; + border-bottom-color: grey; + background-color: darkgray; +} + + +.retro-title{ + padding: .3em; + margin: .1em; + display: flex; + justify-content: space-between; + + color: aliceblue; + + background: #090979; + background: linear-gradient(90deg, rgba(9, 9, 121, 1) 30%, rgba(0, 106, 255, 1) 100%); +} + +.retro-title-close{ + padding-left: .5ch; + padding-right: .5ch; + color: #000; + + margin: -.2em; + margin-left: .5em; + + clear: both; + + border-style: solid; + border-width: .2em; + border-top-color: lightgray; + border-left-color: lightgray; + border-right-color: gray; + border-bottom-color: grey; + background-color: darkgray; +} + +.retro-title-close:hover{ + cursor: pointer; + background-color: rgb(179, 179, 179); +} + +.retro-content{ + padding: .5em; +} + +.retro-text{ + margin: 0; + padding: 0; + + word-wrap: break-word; +} + +.center-children{ + display: flex; + justify-content: center; +} + +.width-size-m{ + width: 50em; +} + +.width-size-s{ + width: 10em; +} + +.retro-button{ + margin: .5em; + + padding: .2em; +} + +.retro-button:hover{ + background-color: rgb(179, 179, 179); +} + +a { + color: inherit; + text-decoration:none; +} \ No newline at end of file diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..ab1c724 --- /dev/null +++ b/src/index.html @@ -0,0 +1,32 @@ + + + + ConfuzzedCatDotDev + + + + + + + + + +
+

Welcome to my websiteX

+
+

Lorem ipsum dolor sit amet consectetur adipisicing elit. Soluta molestiae temporibus maxime recusandae expedita vero consequatur est accusamus modi, obcaecati aperiam tenetur ipsa ratione nobis sapiente aliquid id sed asperiores.

+
+
+ + +
+

About MeX

+
+

Click below to learn more.

+
+
+ Learn more +
+
+ + \ No newline at end of file