-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
122 lines (103 loc) · 2.09 KB
/
Copy pathstyle.css
File metadata and controls
122 lines (103 loc) · 2.09 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
:root {
--base-color: #77b7ff;
--text-color: #000000;
--primary-color: #fffeae;
--secondary-color: #F49097;
--ternary-color: #212738;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-family: 'Roboto Mono', 'Courier New', Courier, monospace;
color: var(--text-color);
}
body {
padding: 1em;
background-color: var(--base-color);
}
h1 {
font-family: Impact, 'Arial Narrow Bold', sans-serif;
color: var(--text-color);
}
nav {
margin: 1em auto 3em;
width: min(1000px, 100%);
}
nav ul {
display: flex;
align-items: center;
justify-content: center;
list-style-type: none;
gap: 3em;
}
nav a {
text-decoration: none;
color: var(--text-color);
font-weight: 500;
}
nav a:hover {
text-decoration: underline;
font-weight: 1000;
}
nav img {
width: 1.25em;
height: 1.25em;
margin-top: -1.25em;
margin-bottom: -0.4em
}
header, section {
margin: 2em auto 2em;
width: min(100em, 100%);
background-color: var(--primary-color);
padding: min(1em, 15%);
border-radius: 1em;
}
.flex-container {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
margin: 3em 0;
gap: 1em;
width: 100%;
}
header img {
max-width: 100%;
border-radius: 1em;
object-fit: fill;
object-position: center;
}
.text-container {
flex: 0 1 40em;
}
h1 {
font-size: 4rem;
}
.text-container p {
margin: 0.5em 0 0.25em;
font-size: 1.5rem;
color: var(--text-color);
}
.small-text-container p {
margin: 0em 0 0.25em;
font-size: 0.5rem;
color: var(--text-color);
}
.cta-button {
display: inline-block;
text-decoration: none;
color: var(--ternary-color);
background-color: var(--secondary-color);
padding: 3em 2em;
border-radius: .5em;
font-weight: 1000;
font-size: 1rem;
}
.cta-button:hover {
background-color: var(--ternary-color);
color: var(--secondary-color);
}