-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (71 loc) · 1.3 KB
/
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
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
body{
margin: 0px;
padding: 0px;
background-image: url('pexels-steve-johnson-1509534.jpg');
background-size: 100%;
}
nav{
background-color: rgba(236, 75, 35, 0.849);
display: flex;
text-align: center;
justify-content: space-around;
}
.manu-line{
width: 40px;
height: 5px;
margin-top: 5px;
margin-bottom: 5px;
background-color:rgb(105, 238, 255);
}
.line{
position: absolute;
right: 20px;
top:20px;
cursor: pointer;
display: none;
}
.name{
font-size: 40px;
font-weight: bolder;
align-self: center;
}
li{
display: inline-block;
margin: 10px;
font-size: 25px;
}
nav a{
text-decoration: none;
color:rgb(105, 238, 255);
}
nav ul{
margin-left:30%;
}
nav a:hover{
color:rgb(245, 241, 248);
}
@media all and (max-width:800px) {
nav{
flex-direction: column;
}
.name{
align-self: self-start;
margin: 10px 0px 0px 20px;
}
nav li{
display: block;
}
nav ul{
text-align: center;
margin: 0px ;
padding: 0px;
display: none;
}
.line{
display: block;
top:10px;
}
}
.show{
display: block;
}