iceshrimp-legacy/src/client/style.styl

44 lines
704 B
Stylus
Raw Normal View History

2019-04-16 17:30:34 +02:00
@charset "utf-8"
2017-12-14 08:24:41 +01:00
/*
::selection
2018-09-26 13:19:35 +02:00
background var(--primary)
2017-12-14 08:24:41 +01:00
color #fff
*/
*
position relative
box-sizing border-box
background-clip padding-box !important
2018-02-23 15:30:30 +01:00
tap-highlight-color transparent
-webkit-tap-highlight-color transparent
2017-12-14 08:24:41 +01:00
html, body
margin 0
padding 0
scroll-behavior smooth
text-size-adjust 100%
2019-07-09 10:01:08 +02:00
font-family Roboto, HelveticaNeue, Arial, sans-serif
2017-12-14 08:24:41 +01:00
2019-03-05 12:32:39 +01:00
html.changing-theme
&, *
2019-03-07 01:30:44 +01:00
transition background 1s ease !important
2017-12-14 08:24:41 +01:00
a
text-decoration none
2018-12-30 18:33:03 +01:00
color var(--link)
2017-12-14 08:24:41 +01:00
cursor pointer
&:hover
text-decoration underline
*
cursor pointer
2018-09-26 13:19:35 +02:00
@css {
a {
2018-12-30 18:33:03 +01:00
tap-highlight-color: var(--linkTapHighlight) !important;
-webkit-tap-highlight-color: var(--linkTapHighlight) !important;
2018-09-26 13:19:35 +02:00
}
}