aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/welcome.scss
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-12-04 21:06:18 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-12-04 21:06:18 +0100
commit6bbb82021532f75aeb606cbb89d25e78fa4b0d13 (patch)
tree347a1d71fed0293ca9587f6572da14d6d25c4902 /src/styles/welcome.scss
parentfix(Shortcuts): Fix service shortcuts for disabled but shown services (@joses... (diff)
downloadferdium-app-6bbb82021532f75aeb606cbb89d25e78fa4b0d13.tar.gz
ferdium-app-6bbb82021532f75aeb606cbb89d25e78fa4b0d13.tar.zst
ferdium-app-6bbb82021532f75aeb606cbb89d25e78fa4b0d13.zip
fix annoying welcome styles
Diffstat (limited to 'src/styles/welcome.scss')
-rw-r--r--src/styles/welcome.scss25
1 files changed, 20 insertions, 5 deletions
diff --git a/src/styles/welcome.scss b/src/styles/welcome.scss
index 5365921fb..cfdcc80ad 100644
--- a/src/styles/welcome.scss
+++ b/src/styles/welcome.scss
@@ -58,17 +58,32 @@
58 } 58 }
59 59
60 &__featured-services { 60 &__featured-services {
61 margin-top: 150px;
62 text-align: center; 61 text-align: center;
63 margin-top: 80px; 62 width: 480px;
63 margin: 80px auto 0 auto;
64 display: flex;
65 align-items: center;
66 flex-wrap: wrap;
67 background: #FFF;
68 border-radius: 6px;
69 padding: 20px 20px 5px;
64 } 70 }
65 71
66 &__featured-service { 72 &__featured-service {
67 width: 35px; 73 width: 35px;
68 margin-right: 30px; 74 height: 35px;
75 margin: 0 10px 15px;
76 filter: grayscale(1)
77 opacity(0.5);
78 transition: 0.5s filter, 0.5s opacity;
79
80 &:hover {
81 filter: grayscale(0);
82 opacity: (1);
83 }
69 84
70 &:last-of-type { 85 img {
71 margin-right: 0; 86 width: 35px;
72 } 87 }
73 } 88 }
74 } 89 }