mirror of
https://github.com/mue/mue.git
synced 2026-07-15 04:53:48 +02:00
feat: finish quick links, start weather widget, bug fixes etc
Co-authored-by: Alex Sparkes <turbomarshmello@gmail.com>
This commit is contained in:
87
src/components/widgets/quicklinks/quicklinks.scss
Normal file
87
src/components/widgets/quicklinks/quicklinks.scss
Normal file
@@ -0,0 +1,87 @@
|
||||
.quicklinks {
|
||||
position: relative;
|
||||
|
||||
h3 {
|
||||
text-shadow: none;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.quicklinkscontainer {
|
||||
padding: 15px;
|
||||
background-color: var(--background);
|
||||
color: var(--modal-text);
|
||||
text-align: center;
|
||||
border-radius: 12px;
|
||||
position: absolute;
|
||||
top: 56%;
|
||||
margin-left: -140px;
|
||||
margin-top: 5px;
|
||||
|
||||
svg {
|
||||
float: left;
|
||||
}
|
||||
|
||||
::placeholder {
|
||||
color: #636e72;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
textarea {
|
||||
border: none;
|
||||
width: 200px;
|
||||
resize: none;
|
||||
height: 100px;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.topbarquicklinks {
|
||||
svg {
|
||||
font-size: 46px;
|
||||
padding: 9px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 46px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
h4 {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.dark textarea {
|
||||
background-color: #2f3542;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.quicklinks {
|
||||
border: none;
|
||||
color: #fff;
|
||||
font-size: 22px;
|
||||
background: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.quicklinks-container>a,
|
||||
.quicklinks-container>.quicklinks>button {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.quicklinks-container {
|
||||
img {
|
||||
height: 32px;
|
||||
width: auto;
|
||||
transition: transform .2s;
|
||||
|
||||
&:hover {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
margin: 5px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user