-
Notifications
You must be signed in to change notification settings - Fork 13
/
target_flappy.html
138 lines (119 loc) · 3.64 KB
/
target_flappy.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
135
136
137
138
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/reset.css"> <!-- CSS reset -->
<link rel="stylesheet" href="css/style.css"> <!-- Resource style -->
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
<script src="js/modernizr.js"></script> <!-- Modernizr -->
<link rel="stylesheet" href="css/style_login.css">
<title>Rezo Gaming League</title>
<style media="screen">
.textWithBlurredBg{
width:300px;
height:auto;
display:inline-block;
position:relative;
transition:.3s;
margin:4px;
}
.textWithBlurredBg img{
width:100%;
height:100%;
transition:.3s;
border-radius:4px;
}
.textWithBlurredBg:hover img{
filter:blur(2px) brightness(60%);
box-shadow:0 0 16px cyan;
}
.textWithBlurredBg :not(img){
position:absolute;
z-index:1;
top:30%;
width:100%;
text-align:center;
color:#fff;
opacity:0;
transition:.3s;
}
.textWithBlurredBg h3{
top:50%
}
.textWithBlurredBg:hover :not(img){
opacity:1;
}
a
{
font-family: verdana;
font-size: 25px;
}
body
{
background-color: black;
}
.inside
{
background-color: white;
color: white;
margin: 50px;
padding: 20px;
border-radius: 35px;
}
.insidebox
{
background-color: white;
color: white;
padding: 20px;
border-radius: 35px;
}
#logo
{
height: 70px;
}
.carousel-inner
{
border-radius: 50px;
}
.mpanefset { top: 142px; left: 165px; position: fixed; width: 1000px; height: 450px; }s
</style>
</head>
<body>
<main class="cd-main-content">
<section id="nav-bar">
<nav class="navbar navbar-expand-lg navbar-light ">
<a class="navbar-brand" href="indexH.html"><img src="logo.png" alt="logo" id="logo" ></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item ">
<a class="nav-link" href="indexH.html"><b><pre><font color="white">Home </pre></font></b></a>
</li>
<li class="nav-item">
<a class="nav-link" href="login_1.html"><b><pre><font color="white">Login </font></pre></b></a>
</li>
<li class="nav-item">
<a class="nav-link" href="regi.html"><b><pre><font color="white">SignUp </font></pre></b></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#ABout Us"><b><pre><font color="white">About Us</font></pre></b></a>
</li>
</ul>
</div>
</nav>
</section>
<div style="color: white;">
<iframe src="Games/clumsy-bird-master/index.html" name="myFrame" class="mpanefset" frameBorder="0" scrolling="no" >
</div>
</iframe>
</body>
</html>