-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
99 lines (82 loc) · 1.58 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>ES6+ and TypeScript: What You Need to Know</title>
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet">
<style>
body {
/* background-color: #F6525D; */
background-color: #779ecb;
color: #FDFCFD;
font-family: 'Roboto Slab', serif;
padding: 2em;
text-align: center;
}
button {
background-color: #6E6182;
border: 0;
border-radius: 2px;
box-shadow: 2px 2px 3px 0px rgba(16, 16, 16, 0.25);
color: #DDDCEC;
font-size: 24px;
font-weight: bold;
}
button:hover {
color: #EEEDF7;
cursor: pointer;
}
button:active {
outline: 0;
}
button:focus {
outline: 0;
}
button:disabled {
background-color: #86779E;
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
color: #A9A8AD;
cursor: auto;
}
.article {
text-align: left;
display: flex;
margin: 10px 0;
}
.article .image {
display: inline-block;
flex-grow: 0;
}
.article .image img {
max-height: 100px;
}
.article .content {
vertical-align: top;
display: inline-block;
flex-grow: 1;
padding: 0 10px;
}
.article .date {
font-size: 0.9em;
font-weight: normal;
}
.article .header {
font-weight: bold;
font-size: 1.2em;
}
.article .description {
font-size: 0.9em;
}
a,
a:link,
a:visited {
color: #FFFFFF;
text-decoration: none;
}
</style>
</head>
<body>
<h1>ES6+ and TypeScript: What You Need to Know</h1>
<button type="button" name="load_articles" id="load_articles" disabled>Load Articles</button>
<div id="articles"></div>
</body>
</html>