generated from shkeating/html-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
110 lines (90 loc) · 1.57 KB
/
styles.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
html, body {
max-width: 100vw;
overflow-x: hidden;
scroll-behavior: smooth;
}
body {
display: flex;
flex-direction: column;
align-items: center;
margin: 0;
font-family: 'Akshar', sans-serif;
font-size: 18px;
background: url("Ph Background 2.jpg");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
h1, h2, h3 {
font-family: 'Gravitas One', serif;
}
h1 {
font-size: 36px;
}
header {
background: #252525;
width: 100vw;
height: 100px;
display: flex;
align-items: center;
position: fixed;
}
header nav {
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
}
a {
color: #fff;
transition: 0.5s color ease;
}
a:hover, a:focus {
color: rgb(255, 73, 73, 1);
}
header nav a img {
max-height: 100px;
}
main {
max-width: 1000px;
background-color: #313131;
color: #fff;
padding: 30px 35px;
margin-top: 100px;
margin-bottom: 50px;
}
main img {
max-width: 100%;
}
.wrapper {
background: rgba(242, 242, 242, 0.20);
padding: 43px 70px;
}
#more {
display: none;
}
.intro {
text-align: center;
}
h2 {
scroll-margin-top: 115px;
}
footer {
position: fixed;
bottom: 0;
background: #252525;
width: 100vw;
height: 50px;
display: flex;
align-items: center;
text-align: center;
}
footer div {
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
gap: 23px;
min-width: 750px;
overflow-x: scroll;
}