-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (81 loc) · 1.4 KB
/
style.css
File metadata and controls
94 lines (81 loc) · 1.4 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html,body {
width: 100%;
height: 100%;
}
header {
background-image: linear-gradient(rgba(55,55,55,0.5),rgba(55,55,55,0.5)), url(backgroundOne.png);
height: 100%;
background-size: cover;
background-position: center;
}
#main {
background: transparent;
width: 100%;
height: 50px;
}
#main {
float: left;
}
.logo {
background: url(logoAltone.png);
width: 180px;
height: 150px;
background-position: left;
background-size: cover;
margin-left: 40px;
margin-top: -5px;
}
#main nav ul {
float: right;
margin-right: 20px;
margin-top: -50px;
}
#main nav ul li {
list-style-type: none;
display: inline-block;
margin: 0 8px;
line-height: 50px;
}
#main nav ul li a {
text-decoration: blink;
color: #fff;
font-size: 14px;
padding: 6px 13px;
transition: 0.4s, all ease-out;
}
#main nav ul li a.active,
#main nav ul li a:hover {
background: #fff;
color: #000000;
transition: 0.4s all ease-out;
}
.text {
transform: translate(-50% -50%);
position: absolute;
top: 54%;
left: 35%;
}
.text hl {
color: #fff;
font-size: 50px;
}
.text span {
width: 4px;
height: 20px;
background: #00ff00;
transform: translate(-50% -50%);
position: absolute;
top: 5%;
left: -15%;
}
.text p {
font-size: 14px;
line-height: 25px;
letter-spacing: 2px;
color: fff;
}