-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
46 lines (43 loc) · 865 Bytes
/
style.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
.menu {
display: grid;
grid-template-columns: auto auto auto auto auto;
border: black solid;
background-color: #333;
position: sticky;
position: -webkit-sticky;
top: 0;
width: 100%;
}
.menu a {
float: left;
color: #f2f2f2;
text-align: center;
font-size: 17px;
text-decoration: none;
}
.menu a:hover {
background-color: #ddd;
color: black;
}
.menu a.active {
background-color: green;
color: white;
}
.item{
border: black solid;
}
.header {
background-image: url('bot.jpg');
background-size: 100% 100% ;
background-repeat: no-repeat;
font-size: 70px;
width : 100% ;
height: 200px;
border : black solid;
display: grid ;
grid-template-columns: 180px 400px
}
body {
background-color: gray;
margin : auto;
}