-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutlines.css
More file actions
120 lines (101 loc) · 1.56 KB
/
Copy pathoutlines.css
File metadata and controls
120 lines (101 loc) · 1.56 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
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
114
115
116
117
118
119
120
body, html {
height: 100%;
margin: 0;
padding: 0;
font-family: sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 22px;
color: #FFFFFF;
}
*{
box-sizing: border-box;
}
.img{
height: 400px;
width: 400px;
display: block;
box-shadow: 3px 10px 5px -5px rgba(255, 0, 0, 0.6);
}
@media screen and (max-width: 600px){
.img{
display: none;
}
}
.gallery{
display: flex;
gap: 20px;
overflow-x: auto;
width: 100%;
background: red;
border-radius: 16px;
padding: 10px;
}
.gallery img{
padding: 5px;
height: 100px;
width: 100px;
}
aside{
width: 200px;
float: right;
}
.header-wrapper{
width: 100%;
height: 80px;
display: flex;
}
.header-logo{
width: 150px;
background: #202020;
}
.header-nav-search{
flex-grow: 1;
background: #202020;
}
.header-auth{
min-width: 50px;
width: 10%;
background: #202020;
}
.main-wrapper{
height: calc(100% - 120px);
width: 100%;
display: flex;
}
.main-categories{
text-align: center;
padding: 5px;
width: 150px;
flex-shrink: 0;
background: #3C3C3C;
}
.main-categories-list A{
text-decoration: none;
color: #FFFFFF;
}
.main-categories-list A:hover{
color: red;
}
.main-content{
overflow-y: auto;
padding: 5px;
word-break: break-word;
flex-grow: 1;
background: #585858;
}
.footer-wrapper{
width: 100%;
height: 40px;
background: gray;
padding: 5px;
}
table{
border: 1px solid black;
background: #00BFFF;
color: black;
}
tr.even{
background: #fff8dc;
}