-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (81 loc) · 1.85 KB
/
index.html
File metadata and controls
92 lines (81 loc) · 1.85 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
<!doctype html>
<html>
<head>
<title>ReactJS GA workshop</title>
<style>
body {
font-family: 'Source Sans Pro',sans-serif;
padding: 0;
margin: 0;
}
#app {
padding: 1em;
height: 100%;
width: 100%;
position: absolute;
}
.user {
border-radius: 2px;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.07);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.07);
box-shadow: 0 1px 2px rgba(0,0,0,0.07);
width: 200px;
height: 200px;
margin: 10px 20px 10px 0px;
display: block;
color: #333;
float: left;
font-weight: 200;
text-decoration: none;
border: 1px solid #CCCCCC;
box-sizing: border-box;
overflow: hidden;
position: relative;
}
.user:hover {
border: 2px solid #77A5FF;
}
.user .title {
margin: 15px;
}
.user .bgImg {
width: 200px;
-webkit-filter: blur(12px);
-moz-filter: blur(12px);
-o-filter: blur(12px);
-ms-filter: blur(12px);
filter: blur(12px);
opacity: 0.5;
position: absolute;
top: 35px;
z-index: -1;
}
.user .profileImg {
border-radius: 50px;
margin: 0px 13px;
width: 100px;
border: 1px solid #f5f5f5;
}
input {
border-radius: 2px;
border: 1px solid #CCCCCC;
display: width inherit;
font-size: 1.2em;
margin-bottom: 10px;
text-indent: 10px;
font-size: 20px;
height: 40px;
font-weight: 200;
width: 100%;
max-width: 850px;
padding: 10px;
}
</style>
</head>
<body>
<div id='app'>
Loading ...
</div>
<script src='dist/app.js'></script>
</body>
</html>