-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle_account.css
90 lines (76 loc) · 1.34 KB
/
style_account.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
table{
border-collapse: collapse;
width: 100%;
font-family: arial,sans-sarif;
}
td,th{
border:1px solid #CCCCCC;
padding: 10px;
}
th{
font-weight: bold;
text-transform: uppercase;
}
tr:nth-child(even)
{
background-color: #dddddd;
}
tr:nth-child(){
tr:hover{
background:rgba(0,0,0,0.7);
color:white;
}
}
/*>>>>>>> SIDEBAR <<<<<<<*/
.wrapper{
display: flex;
width: 100%;
height: 100%;
align-items: stretch;
background-color: rgba(239,239,240, 0.65);
}
div #content{
width: 100%;
}
#sidebar{
min-width: 250px;
max-width: 250px;
min-height: 100vh;
background: #EFEFF0;
color: black;
transition: all 0.3s;
}
#sidebar.active{
margin-left: -250px;
}
#sidebar .sidebar-header {
padding: 20px;
background: #EDEEEE;
}
#sidebar ul.components {
padding: 20px 0;
border-bottom: 1px solid #47748b;
}
#sidebar ul li a {
padding: 10px;
font-size: 1.1em;
display: block;
}
#sidebar ul li a:hover {
color: black;
background: rgba(23,162,184,0.375);
font-weight: bolder;
}
@media (max-width: 768px) {
#sidebar {
margin-left: -250px;
}
#sidebar.active {
margin-left: 0;
}
}
a, a:hover, a:focus{
color: inherit;
text-decoration: none;
transition: all 0.3s;
}