-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrex-dom.css
102 lines (85 loc) · 1.59 KB
/
rex-dom.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
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
98
99
100
101
102
.rex-btn-secondary{
background-color: transparent;
border: 1px solid rgb(180, 180, 180);
letter-spacing: 2px;
color: rgb(180, 180, 180);
}
.rex-btn-secondary:hover{
cursor: pointer;
background-color: rgb(71, 190, 185);
color: white;
border: 0;
transition: .3s;
}
.rex-btn-primary{
background-color: rgb(71, 190, 185);
border: 0;
letter-spacing: 2px;
}
.rex-btn-primary:hover{
cursor: pointer;
background-color: rgb(89, 234, 227);
transition: .3s;
}
.rex-btn-danger{
padding: 16px;
background-color: transparent;
border: 1px solid rgb(180, 180, 180);
border-radius: 8px;
letter-spacing: 2px;
color: rgb(250, 10, 10);
}
.rex-btn-danger:hover{
cursor: pointer;
background-color: rgb(240, 240, 240);
}
.rex-input-primary{
padding: 12px 16px;
border: 0;
border-radius: 6px;
background-color: rgb(240, 240, 240);
}
.rex-input-primary:focus{
border: 1px solid rgb(56, 89, 220);
background-color: transparent;
}
.rex-text-color-hover:hover{
cursor: pointer;
color: rgb(56, 89, 220);
}
.rex-text-underline-hover:hover{
cursor: pointer;
text-decoration: underline;
}
.rex-hover{
cursor: pointer;
}
.rex-overflow-hidden{
overflow: hidden;
}
.rex-overflow-auto{
overflow: auto;
}
.rex-overflow-horizontal{
overflow-x: scroll;
}
.rex-box-shadow1{
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.rex-box-shadow2{
box-shadow: 0px 3px 2px 0px rgba(140,140,140,0.2);
}
.rex-modal-background{
position: fixed;
z-index: 1;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
.rex-sidebar-sticky{
position: -webkit-sticky;
position: sticky;
top: 0;
}