This repository was archived by the owner on Feb 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (89 loc) · 1.35 KB
/
style.css
File metadata and controls
118 lines (89 loc) · 1.35 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
body{
margin: 0;
background-image: url("city_night.jpg");
background-position: center;
background-size: cover;
position: relative;
font-family: 'Gill Sans', sans-serif;
font-weight: 800;
text-align: center;
}
h1{
color: #583982;
font-size: 30px;
background-color: #000514;
border-style: solid;
border-color: #011015;
width: 50%;
}
p{
background-color: rgba(40, 56, 71,.6);
color: #ffcf2d;
font-size: 25px;
line-height: 50px;
border-style: solid;
border-color: #011015;
width: 50%;
}
}
.center{
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.navbar{
height: 100px;
}
.container{
width: 80%;
margin: 0 auto;
}
header{
background: rgba(111,105,107,.45);
}
header::after {
content: '';
display: table;
clear: both;
}
.logo{
float: left;
}
nav{
float: right;
padding: 10px 0;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
}
nav li {
display: inline-block;
margin-left: 70px;
padding-top: 23px;
position: relative;
}
nav a {
color: #ffa709;
text-decoration: none;
text-transform: uppercase;
font-size: 20px;
}
nav a:hover {
color: #000;
}
nav a::before {
content: '';
display: block;
height: 5px;
background-color: #444;
position: absolute;
top: 0;
width: 0%;
transition: all ease-in-out 250ms;
}
nav a:hover::before {
width: 100%;
}