-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (53 loc) · 817 Bytes
/
Copy pathstyle.css
File metadata and controls
53 lines (53 loc) · 817 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-weight: 400;
}
body {
font-family: "Consolas";
}
header, footer {
background: black;
color: white;
padding: 20px;
}
main {
background: white;
color: black;
}
header {
margin-bottom: 25px;
}
.main-text {
font-size: 1.47em;
font-weight: 800;
text-decoration: none;
color: white;
}
.header-nav {
display: flex;
}
.header-nav a {
flex: auto;
color: grey;
text-decoration: none;
font-size: 0.7em;
}
.hero {
background: linear-gradient(135deg, #5555ff, #ff00ff, #ff5555);
color: white;
font-weight: 500;
padding: 30px;
text-align: center;
border-radius: 0px;
}
.hero h2 {
font-weight: 700;
}
.stack {
text-align: center;
}
footer {
margin-top: 25px;
}