-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (79 loc) · 1.46 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
* {
margin: 0;
padding: 0;
}
body {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.container {
height: 100vh;
width: 100%;
background-image: url(media/image.png);
background-size: cover;
background-position: center;
position: relative;
}
.navbar {
width: 80%;
margin: auto;
padding: 15px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
width: 140px;
}
.navbar ul li {
list-style: none;
display: inline-block;
margin: 0 15px;
}
.navbar ul li a {
text-decoration: none;
color: #5f5f5f;
font-size: 18px;
}
.left-col h1 {
margin-left: 6%;
font-size: 90px;
color: #fff;
line-height: 110px;
float: left;
text-shadow: 0px 0px 3px rgb(0, 174, 255);
}
.right-col {
float: right;
margin-top: 120px;
margin-right: 6%;
display: flex;
align-items: center;
}
.right-col p {
font-size: 18px;
color: #5f5f5f;
font-weight: 400;
margin-right: 15px;
text-shadow:0px 0px 1px red;
}
#icon img {
width: 880px;
}
.music {
width: 200px;
}
#icon {
width: 80px;
height: 80px;
cursor: pointer;
}
@media(max-width:840px){
.navbar ul li a{
font-size: 14px;
}
}
@media(max-width:726px){
.navbar {
flex-direction: calc(100%/5);
}
}