-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (112 loc) · 1.9 KB
/
style.css
File metadata and controls
128 lines (112 loc) · 1.9 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
121
122
123
124
125
126
127
128
.head-line{
margin-top: 10px;
display: flex;
justify-content: center;
}
.head-line svg{
width: 430px;
cursor: pointer;
}
.menus{
margin-top: 10px;
display: flex;
justify-content: center;
flex-wrap: wrap;
border-top: 1px solid #ebebeb;
border-bottom: 4px double black;
background: none;
margin: 5px;
}
.menus button{
border: none;
background: none;
margin: 5px;
}
.menus button:hover{
background-color: #ebebeb;
border-radius: 10px;
}
.news-img-size{
max-width: 100%;
max-height: 250px;
}
.news{
border-bottom: 2px solid black;
}
.side-menu {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #ebebeb;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.side-menu-list button {
margin: 5px;
border: none;
background: none;
width: 120px;
}
.side-menu .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
border: none;
background: none;
}
.side-menu-list {
display: flex;
flex-direction: column;
align-items: center;
}
.side-menu-list button:hover {
background-color: lightgrey;
border-radius: 10px;
}
.side-menu{
display: none;
}
.icon-button{
display: none;
margin: 15px;
font-size: 20px;
color: white;
}
#search-input{
margin-right: 10px;
}
.search-button{
border: none ;
border-radius: 5px;
font-weight: 600;
padding: 4px;
font-size: 15px;
}
.search-button:hover{
color: white;
background-color: darkgray;
}
.page-area{
display: flex;
justify-content: center;
margin-top: 30px;
color: black;
}
@media (max-width: 1199px){
.menus{
display: none;
}
.side-menu{
display: block;
}
.icon-button{
display: block;
color: black;
}
}