forked from akshitagupta15june/Moksh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commonStyles.css
54 lines (45 loc) · 883 Bytes
/
commonStyles.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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');
* {
font-family: 'Montserrat', sans-serif;
box-sizing: border-box;
}
.smallerFontSize {
font-size: 12px;
}
.logo {
height: 50px;
width: 50px;
}
select {
padding: 2px 0;
border-radius: 5px;
font-family: 'Montserrat', sans-serif !important;
font-weight: bold;
margin: 0 !important;
}
.dropItemFeature {
text-transform: uppercase;
font-size: 14px;
letter-spacing: 2px;
}
.dropItem {
font-size: 12px;
width: 100%;
}
.dropItem:hover {
background-color: #fff;
color: #000 !important;
}
.dropdown-item {
font-weight: bold;
color: #fff;
}
.dropItemFeatures:hover::after {
position: absolute;
bottom: -1px;
width: 100%;
height: 2px;
content: '';
background-color: #fff;
left: 0;
}