-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
134 lines (112 loc) · 2.28 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<style>
body {
margin: 0;
font-size: 16px;
}
a {
color: rgb(0, 188, 212);
font-weight: bold;
text-decoration: none;
transition: color 0.4s;
}
a:hover {
color: rgb(0, 110, 124);
}
.text-center {
text-align: center;
}
.top-bar {
padding: 10px 15px;
margin-bottom: 50px;
}
.top-bar::after {
content: '';
display: block;
clear: both;
}
.top-bar-left {
float: left;
font-size: 1.5em;
}
.top-bar-right {
float: right;
}
.top-bar a,
.nav a {
margin: 0 8px;
}
.container {
margin: 0 auto;
text-align: center;
width: 700px;
}
.card-heading {
padding: 16px;
}
.field-line, .button-line {
padding: 16px;
}
.error-message {
padding: 0 16px;
color: tomato;
}
.success-message {
padding: 0 16px;
color: green;
}
.avatar {
font-size: 100px;
}
.profile-aboutme {
margin-bottom: 0px;
}
.topics-container {
display: flex; /*sets conatiner as a flex item*/
flex-flow: row wrap; /*sets flex direction* and wrap*/
margin-right:auto;
margin-left:auto;
width: 100%;
font-size: 0; /* remove inline-block spacing*/
padding: 5px 0 5px 0;
}
.topic-box { /*box becomes a flex child */
display: inline-block;
width: 150px;
text-align: center;
background-color: #dfdfdf;
margin-right: 5px;
margin-bottom: 5px;
border-radius: 3px;
font-size: 14px;
padding: 5px 5px;
}
.title {
background-color: rgb(0, 188, 212);
}
.current-position {
color: rgba(0, 0, 0, 0.7);
}
.division {
border-bottom: 7px solid rgb(0, 188, 212);
margin: 0 auto;
width: 50%;
}
</style>
<title></title>
<!-- Support tablet -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Support Web Application mode -->
<meta name="apple-mobile-web-app-capable" content="no">
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div id="app"></div>
</body>
</html>