Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions public/css/account-server.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/* --- License
* Version: 1.0
* File: /public/css/account-server.scss
* Project: account-server
* Created Date: 14 April 2026
* Copyright (c) 2026 OpenMinerva
* License: MIT License
* Authors: Armored Dragon
* --- License */
/* --- License
* Version: 1.0
* File: /public/css/colors.scss
* Project: account-server
* Created Date: 04 March 2026
* Copyright (c) 2026 OpenMinerva
* License: MIT License
* Authors: Armored Dragon
* --- License */
body .container .account-container {
width: 100%;
min-height: 40px;
background-color: rgb(229.5, 229.5, 229.5);
border-radius: 10px;
margin-bottom: 1rem;
padding: 1rem;
box-sizing: border-box;
display: flex;
flex-direction: row;
}
body .container .account-header .account-picture {
aspect-ratio: 1/1;
height: 150px;
background-color: #cccccc;
margin-right: 1rem;
border-radius: 10px;
}
body .container .account-header .account-info .account-info-name {
font-size: 1.5rem;
}
46 changes: 46 additions & 0 deletions public/css/account-server.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
/* --- License
* Version: 1.0
* File: /public/css/account-server.scss
* Project: account-server
* Created Date: 14 April 2026
* Copyright (c) 2026 OpenMinerva
* License: MIT License
* Authors: Armored Dragon
* --- License */

@use "colors";

body {
.container {
.account-container {
width: 100%;
min-height: 40px;
background-color: colors.$om-gray1;
border-radius: 10px;
margin-bottom: 1rem;
padding: 1rem;
box-sizing: border-box;
display: flex;
flex-direction: row;
}
.account-header {
.account-picture {
aspect-ratio: 1/1;
height: 150px;

background-color: colors.$om-gray2;
margin-right: 1rem;
border-radius: 10px;
}

.account-info {
.account-info-name {
font-size: 1.5rem;
}
}
}

.account-biography {
}
}
}
9 changes: 9 additions & 0 deletions public/css/colors.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/* --- License
* Version: 1.0
* File: /public/css/colors.scss
* Project: account-server
* Created Date: 04 March 2026
* Copyright (c) 2026 OpenMinerva
* License: MIT License
* Authors: Armored Dragon
* --- License */
40 changes: 33 additions & 7 deletions public/css/colors.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,35 @@
$bg-1: #2e3132;
$bg-2: #4b4f53;
/* --- License
* Version: 1.0
* File: /public/css/colors.scss
* Project: account-server
* Created Date: 04 March 2026
* Copyright (c) 2026 OpenMinerva
* License: MIT License
* Authors: Armored Dragon
* --- License */

$bg-button: #445c75;
$bg-button-hover: #2d3c4d;
$bg-button-disabled: #313840;
$om-gray1: darken(white, 10%);
$om-gray2: darken(white, 20%);
$om-gray3: darken(white, 30%);
$om-gray4: darken(white, 40%);
$om-gray5: darken(white, 50%);
$om-gray6: darken(white, 60%);
$om-gray7: darken(white, 70%);
$om-gray8: darken(white, 80%);
$om-gray9: darken(white, 90%);

$text-color: white;
$dull-text-color: rgb(200, 200, 200);
$om-blue1: #0077ff;
$om-blue2: darken(#0077ff, 20%);
$om-blue3: darken(#0077ff, 30%);
$om-blue4: darken(#0077ff, 40%);
$om-blue5: darken(#0077ff, 50%);

$om-red1: darken(#ff1e00, 10%);
$om-red2: darken(#ff1e00, 20%);
$om-red3: darken(#ff1e00, 30%);
$om-red4: darken(#ff1e00, 40%);
$om-red5: darken(#ff1e00, 50%);
$om-red6: darken(#ff1e00, 60%);
$om-red7: darken(#ff1e00, 70%);
$om-red8: darken(#ff1e00, 80%);
$om-red9: darken(#ff1e00, 90%);
190 changes: 0 additions & 190 deletions public/css/generic.css

This file was deleted.

Loading