Initial Commit

This commit is contained in:
2021-03-04 20:06:19 -03:00
commit 5d11cb56b8
47 changed files with 2639 additions and 0 deletions

20
public/css/area-chart.css Normal file
View File

@@ -0,0 +1,20 @@
body {
padding: 0;
margin: 0;
background-color: rgb(21, 22, 26);
}
.axis line {
stroke: #C1A1DF;
}
.axis path{
stroke: #C1A1DF;
}
.axis text{
color: #C1A1DF;
font-family: Work Sans;
}

View File

@@ -0,0 +1,19 @@
body {
padding: 0;
margin: 0;
}
.axis line {
stroke: #C1A1DF;
}
.axis path{
stroke: #C1A1DF;
}
.axis text{
color: #C1A1DF;
font-family: Work Sans;
}

View File

@@ -0,0 +1,15 @@
body {
padding: 0;
margin: 0;
background-color: hsl(201, 81%, 8%);
}
.text {
fill: white;
font-family: Work Sans;
font-weight: bold;
font-size: 1rem;
text-anchor: middle;
text-shadow: 2px 2px hsl(201, 81%, 8%);
}

0
public/css/index.css Normal file
View File

View File

@@ -0,0 +1,15 @@
body {
padding: 0;
margin: 0;
background-color: hsl(200, 77%, 5%);
}
.text {
fill: white;
font-family: Work Sans;
font-weight: bold;
font-size: 1rem;
text-anchor: middle;
text-shadow: 2px 2px hsl(200, 77%, 5%);
}

View File

@@ -0,0 +1,6 @@
body {
padding: 0;
margin: 0;
background-color: hsl(84, 77%, 82%);
}

26
public/css/planets.css Normal file
View File

@@ -0,0 +1,26 @@
body {
padding: 0;
margin: 0;
background-color: rgb(21, 22, 26);
}
.axis line {
stroke: #C1A1DF;
}
.axis path{
stroke: #C1A1DF;
}
.axis text{
color: #C1A1DF;
font-family: Work Sans;
}
.text{
fill: #C1A1DF;
font-family: Work Sans;
font-weight: bold;
font-size: 1rem;
}

26
public/css/scores.css Normal file
View File

@@ -0,0 +1,26 @@
body {
padding: 0;
margin: 0;
background-color: rgb(21, 22, 26);
}
.axis line {
stroke: #C1A1DF;
}
.axis path{
stroke: #C1A1DF;
}
.axis text{
color: #C1A1DF;
font-family: Work Sans;
}
.text{
fill: #C1A1DF;
font-family: Work Sans;
font-weight: bold;
font-size: 1rem;
}

26
public/css/time-chart.css Normal file
View File

@@ -0,0 +1,26 @@
body {
padding: 0;
margin: 0;
background-color: rgb(21, 22, 26);
}
.axis line {
stroke: #C1A1DF;
}
.axis path{
stroke: #C1A1DF;
}
.axis text {
color: #C1A1DF;
font-family: Work Sans;
}
.title {
fill: #C1A1DF;
font-family: Work Sans;
}

View File

@@ -0,0 +1,11 @@
body {
padding: 0;
margin: 0;
background-color: hsl(35, 100%, 91%);
}
.circle {
fill: hsl(29, 100%, 50%);
stroke: hsl(15, 78%, 26%);
stroke-width: 10;
}

View File

@@ -0,0 +1,32 @@
body {
display: flex;
flex-direction: column;
background-color: hsl(71, 59%, 89%);
font-size: 16px;
font-family: Work Sans;
}
.axis line {
stroke: hsl(170, 18%, 13%);
fill: hsl(170, 18%, 13%);
}
.axis path {
stroke: hsl(170, 18%, 13%);
}
.axis-grid line {
stroke: hsl(70, 60%, 96%);
}
.axis text {
color: hsl(170, 18%, 13%);
font-size: 0.8rem;
}
.title {
color: hsl(170, 18%, 13%);
font-size: 1.3rem;
text-anchor: 'middle';
}

View File

@@ -0,0 +1,21 @@
body {
display: flex;
flex-direction: column;
background-color: #293241;
color: #e0fbfc;
font-size: 16px;
font-family: Work Sans;
}
.title {
font-size: 1.3rem;
text-anchor: 'middle';
}
.arc {
stroke: #293241;
stroke-width: 2;
}

View File

@@ -0,0 +1,32 @@
body {
display: flex;
flex-direction: column;
background-color: hsl(71, 59%, 89%);
font-size: 16px;
font-family: Work Sans;
}
.axis line {
stroke: hsl(170, 18%, 13%);
fill: hsl(170, 18%, 13%);
}
.axis path {
stroke: hsl(170, 18%, 13%);
}
.axis-grid line {
stroke: hsl(70, 60%, 96%);
}
.axis text {
color: hsl(170, 18%, 13%);
font-size: 0.8rem;
}
.title {
color: hsl(170, 18%, 13%);
font-size: 1.3rem;
text-anchor: 'middle';
}