-
Notifications
You must be signed in to change notification settings - Fork 0
/
_application.scss
125 lines (109 loc) · 1.77 KB
/
_application.scss
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
* {
margin: 0;
min-width: 0;
min-height: 0;
&:focus {
outline: 0 !important;
}
}
html,body,#root{
height:100%;
overflow: hidden;
}
.content-container{
display: block;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
overflow-y: auto;
position: relative;
}
.carousel-container{
overflow-x: hidden;
text-align: center;
}
.disable{
pointer-events: none;
cursor: not-allowed;
}
.soft-blur{
filter: blur(2px);
}
.notification-bell {
.ball {
transform: translate(50px);
}
}
.input-file{
input{
opacity: 0 !important;
}
}
.avatar{
width: 30px;
height:30px;
border-radius: 50%;
}
.avatar.lg{
width: 100px;
height:100px;
border-radius: 50%;
}
.img-sm{
width: 30px;
height:30px;
}
.avatar-lg{
width:200px;
height:200px;
};
.avatar-sm{
width:30px !important;
height:30px !important;
border-radius: 50%;
justify-content: center;
align-items: center;
}
.avatar-md{
//width:30px !important;
//height:30px !important;
height: calc(100% - 6px) !important;
width: calc(100% - 6px) !important;
border-radius: 50%;
justify-content: center;
align-items: center;
}
.input-field{
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
// override bootstrap container class
@media (min-width:320px) {
.container {
width: 100% !important;
}
}
@media (min-width:768px) {
.container {
width: 95% !important;
}
}
@media (min-width: 992px){
.container {
width: 970px !important;
}
}
@media (min-width: 1200px){
.container {
width: 1170px !important;
}
}