Skip to content

Commit 29203cd

Browse files
committed
removed head contrainer
1 parent 2795c6d commit 29203cd

File tree

4 files changed

+68
-186
lines changed

4 files changed

+68
-186
lines changed
Lines changed: 67 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,84 @@
11
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
22
* {
3-
font-family: 'Outfit', sans-serif;
3+
font-family: 'Outfit', sans-serif;
44
}
55
.error-container {
6-
height: 100%;
7-
margin: 0 auto;
8-
background-color: $loader-background;
6+
height: 100%;
7+
margin: 0 auto;
8+
background-color: $loader-background;
99
color: $loader-text;
10-
overflow: hidden;
11-
font: 'Outfit', sans-serif;
10+
overflow: hidden;
11+
font: 'Outfit', sans-serif;
1212

13-
display: flex;
14-
flex-direction: column;
15-
align-items: center;
16-
a {
17-
color: rgb(91, 54, 54);
18-
margin-top: 1%;
19-
height: 3%;
20-
}
21-
img {
22-
text-align: center;
23-
padding-top: 5%;
24-
padding-bottom: 1.5%;
25-
}
26-
p {
27-
padding: 0;
28-
text-align: center;
29-
margin: 2% 0;
30-
}
31-
.loaderChecks {
32-
padding: 1%;
33-
border: 1px solid;
34-
border-style: solid;
35-
border-color: loader-checks-border;
36-
display: grid;
37-
grid-template-columns: 4fr 1fr;
38-
grid-template-rows: repeat(3, 1fr);
39-
grid-column-gap: .5%;
40-
grid-row-gap: .5%;
41-
justify-content: center;
42-
align-items: center;
43-
}
44-
.loaderChecks span {
45-
margin: 0 auto;
46-
display: inline;
47-
}
48-
h2 {
49-
padding-left: 2%;
50-
padding-right: 2%;
51-
}
52-
.check, .fail{
53-
font-size: 3em;
54-
color: green;
55-
margin: 0;
56-
align-self: center;
57-
justify-self: center;
58-
}
59-
.fail{
60-
color: red;
61-
}
62-
.errorMsg{
63-
text-align: center;
64-
font-weight: bold;
65-
}
13+
display: flex;
14+
flex-direction: column;
15+
align-items: center;
16+
a {
17+
color: rgb(91, 54, 54);
18+
margin-top: 1%;
19+
height: 3%;
20+
}
21+
img {
22+
text-align: center;
23+
padding-top: 5%;
24+
padding-bottom: 1.5%;
25+
}
26+
p {
27+
padding: 0;
28+
text-align: center;
29+
margin: 2% 0;
30+
}
31+
.loaderChecks {
32+
padding: 1%;
33+
border: 1px solid;
34+
border-style: solid;
35+
border-color: loader-checks-border;
36+
display: grid;
37+
grid-template-columns: 4fr 1fr;
38+
grid-template-rows: repeat(3, 1fr);
39+
grid-column-gap: 0.5%;
40+
grid-row-gap: 0.5%;
41+
justify-content: center;
42+
align-items: center;
43+
}
44+
.loaderChecks span {
45+
margin: 0 auto;
46+
display: inline;
47+
}
48+
h2 {
49+
padding-left: 2%;
50+
padding-right: 2%;
51+
}
52+
.check,
53+
.fail {
54+
font-size: 3em;
55+
color: green;
56+
margin: 0;
57+
align-self: center;
58+
justify-self: center;
59+
}
60+
.fail {
61+
color: red;
62+
}
63+
.errorMsg {
64+
text-align: center;
65+
font-weight: bold;
66+
}
6667

67-
.launchContentButton {
68-
background: $launch-button;
68+
.launchContentButton {
69+
background: $launch-button;
6970
color: $launch-button-text;
7071
margin: 3px;
71-
padding: 5px 10px;
72+
padding: 5px 10px;
7273
border-radius: 5px;
7374
border: 1px solid rgb(36, 37, 41);
74-
}
75+
}
7576

76-
.launchContentButton:hover {
77+
.launchContentButton:hover {
7778
background: $launch-button-hover;
7879
}
7980

80-
.launchContentButton:active {
81-
box-shadow: 1px 1px 10px black;
81+
.launchContentButton:active {
82+
box-shadow: 1px 1px 10px black;
8283
}
8384
}

src/app/styles/layout/_headContainer.scss

Lines changed: 0 additions & 118 deletions
This file was deleted.

src/app/styles/layout/_stateContainer.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@
6262
}
6363
}
6464

65-
6665
// Web Metrics Container
6766
.web-metrics-container {
6867
display: grid;

src/app/styles/main.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
// 4. Layout-related sections
3737
@import 'layout/mainContainer', 'layout/bodyContainer', 'layout/actionContainer',
3838
'layout/errorContainer', 'layout/stateContainer', 'layout/travelContainer',
39-
'layout/buttonsContainer', 'layout/headContainer.scss';
39+
'layout/buttonsContainer';
4040

4141
// 5. Components
4242
@import 'components/buttons', 'components/actionComponent', 'components/jsonTree',

0 commit comments

Comments
 (0)