-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·75 lines (70 loc) · 2.25 KB
/
Copy pathindex.html
File metadata and controls
executable file
·75 lines (70 loc) · 2.25 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
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>The Wisconsin Ruby Group - Milwaukee Chapter</title>
<link rel="Shortcut Icon" href="/favicon.ico" type="image/x-icon" />
<meta http-equiv="pragma" content="no-cache" />
<meta name="robots" content="all" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
* {
padding: 0;
margin: 0;
}
body {
background-color: #333;
background: url(bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
p {
color: #fff;
font-family: Helvetica;
font-size: 16px;
line-height: 24px;
margin-bottom: 22px;
-webkit-font-smoothing: antialiased;
}
a {
color: #fff;
font-weight: bold;
text-decoration: none;
border-bottom: 1px solid rgba(255,255,255,0.3);
}
a:hover {
color: #990000;
border-bottom: 1px solid rgba(255,255,255,1);
}
#about {
width: 360px;
padding: 10px;
margin: -35px 50px 0 auto !important;
background-color: rgba(0,0,0,0.7);
border-radius: 10px;
}
@media (max-width: 767px) {
#about {
position: relative;
width: auto;
padding: 20px;
margin: 0 !important;
}
}
</style>
</head>
<body>
<div id="about">
<p><a href="http://www.meetup.com/RubyMKE/">RubyMKE</a> is a group of enthusiasts who are interested in using Ruby and Ruby on Rails to make the world an awesome place.
<p>Based in and around Milwaukee, Wisconsin the RubyMKE meetings feature relevant topics for various people interested in building suprisingly stunning software applications.
<p>The typical Ruby folk are those who are interested in learning how to build really amazing software. It's that simple. We make no assumptions about knowledge, but we do care if you're excited about doing awesome stuff.
<p>Give us a shot and we're pretty sure you're going to meet some amazing people that are just like you!
<p>Interested? Then <a href="http://www.meetup.com/RubyMKE/">learn more here</a>.
</div>
</body>
</html>