dev #33

Merged
bema merged 19 commits from dev into master 2023-02-16 14:58:52 +01:00
4 changed files with 18 additions and 11 deletions
Showing only changes of commit 8254f9387f - Show all commits

View File

@@ -21,12 +21,12 @@
.tile { .tile {
width: 100%; width: 100%;
padding-top: 40%; padding-top: 40%;
border: 1px solid gray; border-radius: 5px;
border-radius: 3px;
position: relative; position: relative;
background: #f0f0f095; background: #D5D7E6;
margin-bottom: 10px; margin-bottom: 10px;
cursor: default; cursor: default;
border-bottom: 1px solid darkgray;
} }
.tile:hover { .tile:hover {
@@ -34,7 +34,7 @@
} }
.tile.active { .tile.active {
background: #00000070; background: #2A93B0;
color: white; color: white;
filter: none; filter: none;
} }

View File

@@ -1,4 +1,9 @@
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;700&display=swap');
input {
box-sizing: border-box;
}
.hyperlink, .hyperlink:visited, .hyperlink:active { .hyperlink, .hyperlink:visited, .hyperlink:active {
color: rgb(47, 125, 146); color: rgb(47, 125, 146);
cursor: pointer; cursor: pointer;
@@ -9,6 +14,7 @@
} }
.bordered-field { .bordered-field {
background-color: #FFFFFF;
border: 2px solid rgba(93, 99, 96, 0.705); border: 2px solid rgba(93, 99, 96, 0.705);
border-radius: 5px; border-radius: 5px;
padding: 8px; padding: 8px;
@@ -182,9 +188,10 @@ body {
} }
.action-button.active { .action-button.active {
background: #3bc4f1; background: #2A93B0;
border: 1px solid #7ed0eb; border: 1px solid #7ed0eb;
cursor: pointer; cursor: pointer;
} }
.action-button.active:hover { .action-button.active:hover {
@@ -194,6 +201,7 @@ body {
.action-button { .action-button {
background: rgba(155, 165, 160, 0.507); background: rgba(155, 165, 160, 0.507);
border:1px solid rgba(186, 197, 191, 0.507); border:1px solid rgba(186, 197, 191, 0.507);
border-radius: 5px;
color: white; color: white;
padding: 10px 20px; padding: 10px 20px;
font-weight: 700; font-weight: 700;

View File

@@ -1,8 +1,7 @@
.tooltip-window { .tooltip-window {
position: fixed; position: fixed;
right: 0; right: 0;
filter: drop-shadow(-2px 0px 2px darkgray); background: #FFFFFF;
background: #e8f3f7;
padding: 15px 30px; padding: 15px 30px;
font-family: 'Nunito', sans-serif; font-family: 'Nunito', sans-serif;
width: 40%; width: 40%;

View File

@@ -19,7 +19,7 @@
background: #FFFFFF; background: #FFFFFF;
padding: 15px 30px; padding: 15px 30px;
font-family: 'Nunito', sans-serif; font-family: 'Nunito', sans-serif;
width: 40%; width: 30%;
height: 100%; height: 100%;
overflow: scroll; overflow: scroll;
} }
@@ -60,7 +60,7 @@
} }
.tool { .tool {
width: 55%; width: 65%;
display: flex; display: flex;
justify-content: space-evenly; justify-content: space-evenly;
} }
@@ -252,7 +252,7 @@
} }
.action-button.active { .action-button.active {
background: #3bc4f1; background: #2A93B0;
border: 1px solid #7ed0eb; border: 1px solid #7ed0eb;
cursor: pointer; cursor: pointer;
border-radius: 5px; border-radius: 5px;
@@ -390,7 +390,7 @@
padding: 15px 0; padding: 15px 0;
margin: 5px 0px; margin: 5px 0px;
font-size: 18px; font-size: 18px;
background: #ADAEBA; background: #D5D7E6;
cursor: pointer; cursor: pointer;
border-bottom: darkgray 2px solid !important; border-bottom: darkgray 2px solid !important;
border-radius: 5px; border-radius: 5px;