Import Ruty
This commit is contained in:
@@ -0,0 +1,66 @@
|
||||
body {
|
||||
background-color: #3E3E3E;
|
||||
font-family: Rubik, sans-serif;
|
||||
}
|
||||
|
||||
h1.welcome {
|
||||
padding-left: 25px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: white;
|
||||
}
|
||||
|
||||
header {
|
||||
background-color: #303030;
|
||||
width: 100%;
|
||||
height: 100px;
|
||||
display:flex;
|
||||
justify-content:center;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
a.login_button {
|
||||
text-decoration: none;
|
||||
background-color: rgb(186, 9, 9);
|
||||
color: white;
|
||||
display: block;
|
||||
width: 220px;
|
||||
height: 65px;
|
||||
font-size: 32px;
|
||||
border-style: solid;
|
||||
border: 10px;
|
||||
border-color: rgb(124, 0, 0);
|
||||
border-radius: 10px;
|
||||
transition: 0.2s;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
text-align: center;
|
||||
text-shadow: #303030;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
background-color: rgb(124, 0, 0);
|
||||
transition: 0.2s;
|
||||
height: 75px;
|
||||
width: 230px;
|
||||
}
|
||||
|
||||
div.login {
|
||||
margin-top: 250px;
|
||||
background-color: #303030;
|
||||
width: 600px;
|
||||
height: 210px;
|
||||
justify-content:center;
|
||||
border-radius: 10px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
h2.type1 {
|
||||
padding-top: 20px;
|
||||
color: white;
|
||||
font-size: 32px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
@@ -0,0 +1,125 @@
|
||||
body {
|
||||
background-color: #3e3e3e;
|
||||
font-family: Rubik, sans-serif;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(0,0,0,0.5);
|
||||
display: none;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
#header {
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
#menu {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: -300px;
|
||||
width: 300px;
|
||||
height: 100%;
|
||||
background-color: #b9b9b9;
|
||||
transition: left 0.3s ease-in-out;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
right: -300px;
|
||||
}
|
||||
|
||||
h1.name {
|
||||
padding-left: 25px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: white;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: white;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: white;
|
||||
}
|
||||
|
||||
h4 {
|
||||
color: white;
|
||||
}
|
||||
|
||||
h5 {
|
||||
color: white;
|
||||
}
|
||||
|
||||
p {
|
||||
color: white;
|
||||
}
|
||||
|
||||
#current_date {
|
||||
color: white;
|
||||
}
|
||||
|
||||
header {
|
||||
background-color: #303030;
|
||||
width: 100%;
|
||||
height: 100px;
|
||||
display:flex;
|
||||
justify-content:left;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
nav.nav {
|
||||
margin-top: 150px;
|
||||
text-decoration: none;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
nav.nav2 {
|
||||
margin-top: 80%;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
li.nav {
|
||||
background-color: #939393;
|
||||
transition: 0.3s;
|
||||
margin: 20px;
|
||||
text-align: center;
|
||||
height: 70px;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
li.nav:hover {
|
||||
background-color: #b9b9b9;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
margin: auto;
|
||||
color: black;
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
li.nav2 {
|
||||
background-color: #939393;
|
||||
transition: 0.3s;
|
||||
margin: 20px;
|
||||
text-align: center;
|
||||
height: 70px;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
li.nav2:hover {
|
||||
background-color: #b9b9b9;
|
||||
transition: 0.3s;
|
||||
}
|
||||
@@ -0,0 +1,163 @@
|
||||
/* stylenote.css */
|
||||
body {
|
||||
font-family: Rubik, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #3e3e3e;
|
||||
}
|
||||
|
||||
#app {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
#sidebar {
|
||||
width: 400px;
|
||||
height: 100%;
|
||||
background-color: #4a4a4a;
|
||||
color: white;
|
||||
padding: 20px;
|
||||
transition: transform 0.3s ease;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
#folder-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
width: 400px;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.folder {
|
||||
cursor: pointer;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.note {
|
||||
cursor: pointer;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#content {
|
||||
flex-grow: 1;
|
||||
padding: 20px;
|
||||
flex: 2;
|
||||
}
|
||||
|
||||
#note-list {
|
||||
position: fixed;
|
||||
left: -400px;
|
||||
width: 400px;
|
||||
height: 100%;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#text-editor-container {
|
||||
border: 1px solid #ccc;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
#text-editor {
|
||||
min-height: 200px;
|
||||
padding: 10px;
|
||||
font-size: 16px;
|
||||
outline: none;
|
||||
border: none;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(0,0,0,0.5);
|
||||
display: none;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
#header {
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
#menu {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: -300px;
|
||||
width: 300px;
|
||||
height: 100%;
|
||||
background-color: #b9b9b9;
|
||||
transition: left 0.3s ease-in-out;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
right: -300px;
|
||||
}
|
||||
|
||||
h1.welcome {
|
||||
padding-left: 25px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: white;
|
||||
}
|
||||
|
||||
header {
|
||||
background-color: #303030;
|
||||
width: 100%;
|
||||
height: 100px;
|
||||
display: flex;
|
||||
justify-content: left;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
nav.nav {
|
||||
margin-top: 150px;
|
||||
text-decoration: none;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
nav.nav2 {
|
||||
margin-top: 80%;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
li.nav {
|
||||
background-color: #939393;
|
||||
transition: 0.3s;
|
||||
margin: 20px;
|
||||
text-align: center;
|
||||
height: 70px;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
li.nav:hover {
|
||||
background-color: #b9b9b9;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
margin: auto;
|
||||
color: black;
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
li.nav2 {
|
||||
background-color: #939393;
|
||||
transition: 0.3s;
|
||||
margin: 20px;
|
||||
text-align: center;
|
||||
height: 70px;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
li.nav2:hover {
|
||||
background-color: #b9b9b9;
|
||||
transition: 0.3s;
|
||||
}
|
||||
@@ -0,0 +1,102 @@
|
||||
body {
|
||||
background-color: #3e3e3e;
|
||||
font-family: Rubik, sans-serif;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(0,0,0,0.5);
|
||||
display: none;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
#header {
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
#menu {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: -300px;
|
||||
width: 300px;
|
||||
height: 100%;
|
||||
background-color: #b9b9b9;
|
||||
transition: left 0.3s ease-in-out;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
right: -300px;
|
||||
}
|
||||
|
||||
h1.welcome {
|
||||
padding-left: 25px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
||||
header {
|
||||
background-color: #303030;
|
||||
width: 100%;
|
||||
height: 100px;
|
||||
display:flex;
|
||||
justify-content:left;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
nav.nav {
|
||||
margin-top: 150px;
|
||||
text-decoration: none;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
nav.nav2 {
|
||||
margin-top: 80%;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
li.nav {
|
||||
background-color: #939393;
|
||||
transition: 0.3s;
|
||||
margin: 20px;
|
||||
text-align: center;
|
||||
height: 70px;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
li.nav:hover {
|
||||
background-color: #b9b9b9;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
margin: auto;
|
||||
color: black;
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
li.nav2 {
|
||||
background-color: #939393;
|
||||
transition: 0.3s;
|
||||
margin: 20px;
|
||||
text-align: center;
|
||||
height: 70px;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
li.nav2:hover {
|
||||
background-color: #b9b9b9;
|
||||
transition: 0.3s;
|
||||
}
|
||||
Reference in New Issue
Block a user