summaryrefslogtreecommitdiffstats
path: root/victoria/static/main.css
diff options
context:
space:
mode:
Diffstat (limited to 'victoria/static/main.css')
-rw-r--r--victoria/static/main.css188
1 files changed, 188 insertions, 0 deletions
diff --git a/victoria/static/main.css b/victoria/static/main.css
new file mode 100644
index 0000000..2790857
--- /dev/null
+++ b/victoria/static/main.css
@@ -0,0 +1,188 @@
+h1 {
+ color: #9561bd;
+}
+
+bottom {
+ float: bottom;
+}
+
+* {
+ overflow-wrap:break-word;
+ cursor: var(--default), auto;
+
+}
+
+header {
+ padding: 20px;
+}
+
+p, a {
+ font-family: sans-serif;
+}
+
+a {
+ cursor: var(--pointer), auto;
+ display: inline-block;
+ color: inherit;
+ position: relative;
+ text-decoration: none;
+ transition: linear 0.2s;
+ color: var(--purple);
+}
+
+a:before {
+ background: var(--rainbowright);
+ content: '';
+ height: 2px;
+ position: absolute;
+ bottom: -1.5px;
+ width: 100%;
+ left: 50%;
+ transform: translateX(-50%);
+ transition: width 0.2s ease-in-out;
+}
+
+a:hover{
+ color: var(--white);
+}
+
+a:hover:before{
+ width: 0;
+}
+
+
+
+html{
+ min-height: 100%;
+}
+
+body {
+ color: var(--lightblue);
+ font-family: serif;
+ font-weight: normal;
+
+ margin: 0;
+ padding: 0;
+
+ background-color: #ffffff;
+
+
+ min-height: 100%;
+ height: 100%;
+
+ background-size: auto;
+ background-position: center;
+}
+
+.flexbox{
+ padding-top: 1.5%;
+ padding-bottom: 4%;
+ display:flex;
+ justify-content: space-between;
+}
+
+.in-flexbox {
+ box-sizing: border-box;
+ height: 100%;
+ padding: 0;
+}
+
+.container{
+ padding: 1% 2%;
+ width: 74%;
+ height: 100%;
+}
+
+.sidebar{
+ position: sticky;
+ top: 1.5%;
+ width: 24%;
+}
+
+.sidebar div{
+ margin-bottom: 13px;
+ padding: 2% 10%;
+}
+
+.nav a, .subpage a{
+ color: var(--lightblue);
+}
+
+.nav a:hover, .subpage a:hover{
+ color: var(--white);
+ transition: linear 0.2s;
+}
+
+.nav p, .subpage p{
+ line-height: 1em;
+}
+
+
+@media (max-width:1024px)
+{
+ .flexbox{
+ flex-direction: column;
+ justify-content: space-around;
+ align-items: center;
+
+ }
+ .sidebar {
+ display: flex;
+ position: relative;
+ flex-direction: row;
+ width: 74%;
+ justify-content: space-between;
+ box-sizing: border-box;
+ gap: 2%;
+ }
+
+ .sidebar div{
+ margin-bottom: 13px;
+ padding: 1% 2%;
+ flex-grow: 1;
+ }
+}
+
+@media (max-width: 720px)
+{
+ .container{
+ width: 90%;
+ }
+ .sidebar{
+ width: 90%;
+ }
+
+ .nav h2{
+ font-size: 1.4em;
+ }
+ .nav p{
+ font-size: 11px;
+ }
+
+ a:before {
+ height: 2px;
+ bottom: -2px;
+ }
+
+}
+
+.body {
+ width: 60%;
+ height: 95%;
+
+ margin: auto;
+ margin-top: 2.5%;
+
+ padding: 0;
+
+}
+
+@media (max-width:1024px)
+{
+ .body {
+ width: 100%;
+ padding: 0;
+ margin: auto;
+ }
+}
+