This repository was archived by the owner on May 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (69 loc) · 1.48 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
body{
background-color:#008080;
color: white;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
font-family: Tahoma, Geneva, sans-serif;
font-size: 13px;
height: 100vh;
width:100vw;
margin:0px;
padding:0px;
padding-left: 7px;
line-height: 13px;
margin-top:3px;
font-weight: lighter;
overflow: hidden;
}
span,div {
display: inline-block;
}
span#price{
font-weight: bold;
}
span.devider{
padding:0px;
padding-left: 3px;
padding-right: 3px;
}
span#smalltext{
display: inline-block;
}
button{
height: 27px;
background-color: #960035;
color:white;
border: 1px solid grey;
border-radius: 3px;
margin:0px;
vertical-align: top;
display: inline-block;
}
button:hover{
background-color: #b60040;
}
button:active{
background-color: #d8004c;
}
.smalltext{
animation: animationFrames linear 1s;
animation-iteration-count:infinite;
}
@keyframes animationFrames{
0% {
color: #ff4646;
}
50% {
color: white;
}
100% {
color:#ff4646;
}
}
::-webkit-scrollbar {
display: none;
}