-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
68 lines (49 loc) · 971 Bytes
/
index.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
body {
background-color: black;
background-image: url(space.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.header {
color: white;
text-align: center;
font-family: 'Times New Roman', Times, serif;
font-size: 60px;
}
.navbar {
display: flex;
justify-content: center;
align-items: center;
background-color: #333;
height: 60px;
overflow: auto;
}
.navbar a {
font-size: 20px;
text-decoration: none;
color: white;
padding: 10px 50px;
}
.navbar a.active {
background-color: rgb(6, 6, 167);
color: yellow;
}
.navbar a:hover {
background-color: #454545;
color: white;
text-transform: uppercase;
cursor: crosshair;
}
.mainpic img {
width: 100%;
height: auto;
}
/* Styles for screens larger than 1024px */
@media (min-width: 851x) {
/* Your CSS rules here */
}
/* Styles for screens smaller than 600px */
@media (max-width: 850px) {
/* Your CSS rules here */
}