Updates to order screen
This commit is contained in:
@@ -3,6 +3,15 @@
|
||||
src: url("/fonts/OpenSans-Regular.ttf") format('truetype')
|
||||
font-style: normal
|
||||
|
||||
@font-face
|
||||
font-family: "manrope"
|
||||
src: url("/fonts/OpenSans-SemiBold.ttf") format('truetype')
|
||||
font-weight: bold
|
||||
|
||||
@font-face
|
||||
font-family: "manrope"
|
||||
src: url("/fonts/OpenSans-Light.ttf") format('truetype')
|
||||
font-weight: 100
|
||||
|
||||
*
|
||||
margin: 0
|
||||
@@ -10,10 +19,19 @@
|
||||
box-sizing: border-box
|
||||
font-family: 'manrope', sans-serif
|
||||
scroll-behavior: smooth
|
||||
cursor: pointer
|
||||
-webkit-touch-callout: none
|
||||
-webkit-user-select: none
|
||||
-khtml-user-select: none
|
||||
-moz-user-select: none
|
||||
-ms-user-select: none
|
||||
user-select: none
|
||||
|
||||
.rtl
|
||||
direction: rtl
|
||||
|
||||
|
||||
|
||||
input[type=text], select, textarea
|
||||
padding-left: 1em
|
||||
padding-right: 1em
|
||||
@@ -85,4 +103,20 @@ body
|
||||
background: var(--void-button-background)
|
||||
|
||||
.invisible
|
||||
visibility: hidden
|
||||
visibility: hidden
|
||||
|
||||
.hidden
|
||||
display: none
|
||||
|
||||
.pulse
|
||||
animation-name: color
|
||||
animation-duration: 300ms
|
||||
animation-iteration-count: 1
|
||||
|
||||
@keyframes color
|
||||
0%
|
||||
background-color: var(--pulse-first-color)
|
||||
50%
|
||||
background-color: var(--pulse-second-color)
|
||||
100%
|
||||
background-color: var(--pulse-final-color)
|
||||
Reference in New Issue
Block a user