-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (72 loc) · 1.23 KB
/
style.css
File metadata and controls
85 lines (72 loc) · 1.23 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
/** @format */
.vertical-nav {
min-width: 17rem;
width: 17rem;
height: 100vh;
position: fixed;
top: 0;
left: 0;
box-shadow: 3px 3px 10px rgba(0, 0, 0, 5);
transition: all 0.4s;
}
.page-content {
width: calc(100% - 17rem);
margin-left: 17rem;
transition: all 0.4s;
}
/* for toggle behavior */
#sidebar.active {
margin-left: -17rem;
}
#content.active {
width: 100%;
margin: 0;
}
@media (max-width: 768px) {
#sidebar {
margin-left: -17rem;
}
#sidebar.active {
margin-left: 0;
}
#content {
width: 100%;
margin: 0;
}
#content.active {
margin-left: 17rem;
width: calc(100% - 17rem);
}
}
.bgroudcolor {
/* background: #ec7aaa; */
/* background: -webkit-linear-gradient(to right, #ec7aaa, #c2e59c); */
background: linear-gradient(to right, #000000, #636c6d);
/* background: #000000; */
min-height: 100vh;
overflow-x: hidden;
}
.separator {
margin: 3rem 0;
border-bottom: 1px dashed #fff;
}
.text-uppercase {
letter-spacing: 0.1em;
}
.text-white {
color: white;
}
.nav-item{
padding-bottom: 10px;
}
.dropdown-menu{
min-width: 130px !important;
padding: 10px 25px !important;
}
.dropdown-item .nav-link a {
line-height: 25px !important;
}
a:active, a:focus{
font-weight: bold !important;
font-size: 18px;;
}