-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
91 lines (76 loc) · 1.1 KB
/
index.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
:root{
font-size: 16px;
}
.navbar{
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
background-color: #ebebe0;
}
.logo{
padding: 5px;
font-size: 1.4rem;
}
.list a{
font-family:'Arial';
font-weight: normal;
color: grey;
padding: 2px;
}
.list a:hover {
color: black;
}
a{
text-decoration: none;
margin:10px;
color: red;
font-family:'Comic Sans MS';
font-size: 1.1rem;
font-weight: bold;
}
.list-div{
display: flex;
flex-basis: auto;
flex-grow: 1;
}
.list{
display: flex;
flex-direction: row;
list-style: none;
margin-right: auto !important;
padding-left: 10px;
}
.list li{
list-style: none;
}
.btn-menu{
display: none;
}
@media only screen and (max-width: 992px) {
.navbar{
justify-content: space-between;
flex-wrap: wrap;
}
.btn-menu{
display: block;
margin:5px;
background-color: #ebebe0;
border:none;
}
.btn-menu img{
height: 40px;
width: 30px;
}
.list{
display: flex;
flex-direction: column;
padding-left: 0;
}
.list-div{
flex-basis: 100%;
}
.hide{
display: none;
}
}