-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
97 lines (88 loc) · 1.52 KB
/
Copy pathinput.css
File metadata and controls
97 lines (88 loc) · 1.52 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
@import "tailwindcss";
/* scrollbar */
#commentSection::-webkit-scrollbar {
width: 4px;
}
#commentSection::-webkit-scrollbar-thumb {
background-color: hsl(220, 10%, 56%);
border-radius: 2px;
}
/* ### Primary */
.purple-600 {
background-color: hsl(238, 40%, 52%);
}
.pink-400 {
background-color: hsl(358, 79%, 66%);
}
.purple-200 {
background-color: hsl(239, 57%, 97%);
}
.pink-200 {
background-color: hsl(357, 100%, 86%);
}
.f-purple-600 {
fill: #5457b6;
}
.-purple-200 {
fill: hsl(239, 57%, 97%);
}
.t-purple-600 {
color: hsl(238, 40%, 52%);
}
.t-pink-400 {
color: hsl(358, 79%, 66%);
}
.t-purple-200 {
color: hsl(239, 57%, 85%);
}
.t-pink-200 {
color: hsl(357, 100%, 86%);
}
/* ### Neutral */
.grey-800 {
background-color: hsl(212, 24%, 26%);
}
.grey-500 {
background-color: hsl(211, 10%, 45%);
}
.grey-100 {
background-color: hsl(223, 19%, 93%);
}
.grey-50 {
background-color: hsl(228, 33%, 97%);
}
.white {
background-color: hsl(0, 100%, 100%);
}
.t-grey-800 {
color: hsl(212, 24%, 26%);
}
.t-grey-500 {
color: hsl(211, 10%, 45%);
}
.t-grey-100 {
color: hsl(223, 19%, 93%);
}
.t-grey-50 {
color: hsl(228, 33%, 97%);
}
.t-white {
color: hsl(0, 100%, 100%);
}
* {
font-family: "Rubik", sans-serif;
font-optical-sizing: auto;
font-style: normal;
}
.voteMinus:hover .svgMinus,
.votePlus:hover .svgPlus {
fill: hsl(238, 40%, 68%);
}
.voteMinus:active .svgMinus,
.votePlus:active .svgPlus {
fill: hsl(238, 40%, 52%);
}
.flat-reply {
margin-left: 0 !important;
border-left: none !important;
}