aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/main.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/main.scss')
-rw-r--r--src/styles/main.scss53
1 files changed, 13 insertions, 40 deletions
diff --git a/src/styles/main.scss b/src/styles/main.scss
index 6861663..4cededc 100644
--- a/src/styles/main.scss
+++ b/src/styles/main.scss
@@ -24,56 +24,29 @@ html {
}
body {
- font-size: 1.2rem;
- font-family: Arial;
- color: map-get($colors, font);
- margin: 0 5%;
-
- .parent {
+ .list-group.scrollable {
+ height: 720px;
+ overflow: scroll;
+ }
+ .grid {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
- align-items: flex-start;
+ align-items: center;
height: 100%;
.item {
- &:active {
- .icon {
- &.inactive {
- display: none;
- }
-
- &.enabled{
- display: block;
- }
- }
- }
-
- color: map-get($colors, font);
- text-decoration: none;
+ display: flex;
+ justify-content: center;
- -webkit-animation-name: animation;
- -webkit-animation-duration: 2s;
+ button {
+ width: 300px;
+ height: 300px;
- .icon {
-
- &.inactive {
- display: block;
- }
-
- &.enabled{
- display: none;
+ .icon {
+ font-size: 7rem;
}
-
- width: 70%;
- margin: 5% 15%;
- }
-
- .name {
- width: 100%;
- text-align: center;
- text-transform: uppercase;
}
}
}