-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster.css
113 lines (113 loc) · 1.6 KB
/
master.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
body {
padding-top: 50px;
padding-right: 300px;
}
.logo {
padding: 0;
margin: 0;
height: 50px;
}
.mynav-right {
padding: 0;
margin: 0;
float: right;
}
.mynav {
text-align: center;
background-color: greenyellow;
}
.active-bc {
background-color: lightseagreen;
}
.my-btn {
width: 160px;
margin-left: 20px;
margin-right: 20px;
}
.mytable {
text-align: center;
}
.t-header {
text-align: center;
background-color: seagreen;
}
tr:nth-child(even) {
background-color: lightblue;
}
.menu {
background-color: lightgreen;
position: fixed;
float: right;
width: 300px;
margin: 0;
height: 100%;
top: 0;
right: 0;
overflow-x: hidden;
padding-top: 50px;
text-align: center;
z-index: 15;
}
.prev-btn {
float: right;
}
.next-btn {
float: left;
}
.out-menu {
text-align: center;
}
.parent-wrapper {
text-align: center;
}
.parent {
margin: auto;
display: flex;
flex-wrap: wrap;
}
.child {
background-color: lightblue;
text-align: center;
font-size: 5em;
flex: 1 0 21%;
margin: 2%;
width: 100px;
height: 200px;
box-shadow: 0;
transition: box-shadow 1s;
position: relative;
z-index: 10;
}
.child:hover {
box-shadow: 0 0 0.5em black;
}
.responsive-menu {
margin-left: 0;
padding: 0;
display: none;
width: 5%;
float: left;
}
@media (max-width: 1000px) {
.child {
flex: 1 0 25%;
}
}
@media (max-width: 600px) {
.menu {
display: none;
background-color: lightgreen;
position: none;
float: left;
left: 0;
}
body {
padding-right: 0;
}
.top-nav-item {
display: none;
}
.responsive-menu {
display: block;
}
}