forked from sarveshpathak139/HRMIS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
67 lines (57 loc) · 1.07 KB
/
styles.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
.logo {
font-size: 35px;
;
}
.nav
{
width:100%;
}
.hr {
font-size: 35px;
margin-left: 500px;
}
.p {
background: #3f51b5;
color: white;
}
.gri {
display: grid;
grid-template-columns: auto auto auto auto auto auto auto !important;
font-family: 'Roboto', sans-serif;
font-size: 20px;
}
.gri a:hover {
border-bottom: 2px solid black;
text-decoration: none;
transition: width .7s;
}
.block h2 {
font-family: 'Times New Roman', Times, serif;
}
.line {
border: 2px solid #3f51b5 !important;
width: 50px;
}
table {
font-family: 'Josefin Sans', sans-serif;
}
/* .table {
margin-left: 400px;
} */
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
color: black;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
padding: 12px 16px;
z-index: 1;
}
.dropdown:hover .dropdown-content {
display: block;
}