Beautiful Design App

Something like this.

<span />
<style>
   @import '//glidetools.ml/app-layout/side-menu?hideSignIn&hideItems=2&headerImage=
</style>
3 Likes

It worked wonders for me, thank you very much, I just colored all the inline lists, and I just wanted one hahaha Anyway, since I found out about this I am learning to write css in Solo Learn, a very useful app to learn

1 Like

That works for me.

Thanks man!

1 Like

It’s weird but I can’t seem to find a CSS to select that download button. Would love if anyone has an idea for that.

1 Like

@ThinhDinh, @Robert_Petitto, @Lucas_Pires

Do you have a way to make the text in the inline smaller? My client wants it smaller and 3 lines max but he wants all that.

Is it possible?

Screen Shot 2021-01-12 at 10.07.38 AM

Thanks!

.tile-title {
font-size: .7rem !important;
line-height: .8rem !important;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
   -webkit-box-orient: vertical;
}

9 Likes

Awesome! Thanks!

CSS wizard

1 Like

More like Google Searcher :wink:

6 Likes

:mage: does that hat ever take out rabbits?

1 Like

6 Likes

Hey.
I would be grateful for a hint.
How to place the first button in the upper right corner, and leave the second at the bottom

1 Like

Tnks

try this:

.fab-target :nth-child(1) >{

did not work

In fact, I have three buttons.
1 and 2 are displayed alternately depending on the selection condition and need to be at the top.
The third must be fixed at the bottom.
Is it possible?
Снимок экрана 2021-01-15 в 12.09.06

remove the character “>”

@Vladimir_Zambakhidze

<pre><span><style>
.fab-target >:nth-child(1) {
position: fixed;
top: 18% !important;
}
.fab-target >:nth-child(2) {
position: fixed;
top: 26% !important;
}

2 Likes

Could you use this as a “to-top” button?

I guess it would need some sort of anchor :thinking:

Design do menu inicial de um aplicativo que estou produzindo para a minha escola, com o objetivo de substituir a plataforma antiga que a escola estava utilizando para o EAD.

8 Likes