forked from jeffreycharters/station
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
143 lines (127 loc) · 2.29 KB
/
style.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
html {
font-size: 62%;
}
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 90%;
margin: auto;
/*border: 0.1vh solid paleturquoise;*/
text-align: center;
font-size: 2rem;
}
#embed {
display: none;
}
@media screen and (max-width: 480px) /* .embed { height: 360px; width: 480px; } */ {
.container {
max-width: 100%;
}
}
ol {
list-style: none;
counter-reset: my-awesome-counter;
}
li {
counter-increment: my-awesome-counter;
margin: 0.25rem;
}
li::before {
content: counter(my-awesome-counter);
background: #662974;
width: 2rem;
height: 2rem;
border-radius: 50%;
display: inline-block;
line-height: 2rem;
color: white;
text-align: center;
margin-right: 0.5rem;
}
ol ol li::before {
background: #de51ff;
}
ol ol ol li::before {
background: #ee9eff;
}
body {
font-family: "PT Serif", serif;
}
/* Hero styles */
.hero-section {
/* position: relative; */
/* width: 80vw; */
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.hero-section::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 90%;
background: url(images/coding-photo2.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
filter: brightness(60%);
}
.hero-content {
position: relative;
color: white;
margin: auto;
}
.hero-title {
font-size: 48px;
font-weight: 600;
margin-bottom: 0;
}
.hero-subtitle {
font-size: 24px;
font-weight: 200;
margin-top: 16px;
margin-bottom: 60px;
}
.hero-button {
text-decoration: none;
background-color: #00cccc;
color: black;
padding: 10px 20px;
border-radius: 8px;
font-weight: 400;
border: 2px solid #00e6e6;
font-size: 20px;
}
.hero-button:hover {
background-color: #00b3b3;
}
#plus {
position: absolute;
right: 0px;
height: 65px;
width: 65px;
}
h2 {
background: linear-gradient(
to right,
#fff 20%,
rgb(205, 80, 247) 40%,
rgb(84, 164, 255) 60%,
/* #43d3ff 80%, */ rgb(255, 255, 255) 80%
);
background-size: 200% auto;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
animation: animate 3s ease infinite;
}
@keyframes animate {
to {
background-position: 200% center;
}
}