-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpainting.html
More file actions
207 lines (168 loc) · 3.86 KB
/
Copy pathpainting.html
File metadata and controls
207 lines (168 loc) · 3.86 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<!DOCTYPE html>
<html>
<head>
<title>
Painting
</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link rel="shortcut icon" href="icon.ico">
<style>
body, html {
height: 100%;
margin: 0;
background-attachment: fixed;
font-family: "Comic Sans MS";
}
* {
box-sizing: border-box;
}
.bgimg{
background-image:url("pic56.jpg");
/* Add the blur effect */
opacity: 0.7;
background-attachment: fixed;
height: 170%;
background-repeat: no-repeat;
-webkit-background-size:cover;
background-position:center center;
-moz-background-size:cover;
-o-background-size:cover;
}
h1{
position:absolute;
font-family: cursive;
font-size: 300%;
color: black;
left: 32%;
text-align: center;
}
h2{
position: absolute;
font-size:150%;
color: orange;
}
.neon {
font-size:230%;
color: white;
text-shadow:
0 0 5px blue,
0 0 1px blue,
0 0 2px cyan,
0 0 4px cyan,
0 0 8px cyan,
0 0 9px red,
0 0 10px red,
0 0 15px blue;
left:0%;
}
pre{
background:transparent;
}
h3{
font-size: 1em;
color: cyan;
}
/* Position text in the middle of the page/image */
.text {
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
color: white;
font-weight: bold;
border: 3px solid #f1f1f1;
position: absolute;
top: 0%;
width: 75%;
padding: 5px;
}
.bg-text {
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
color: white;
font-weight: bold;
border: 3px solid #f1f1f1;
position: absolute;
top: 84%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
width: 100%;
padding: 20px;
text-align: center;
}
.btnhome{
position: absolute;
width:30%;
padding: 5px;
color: white;
background-color: #0D5F96;
top:2%;
left: 102%;
}
.footer-distributed{
background-color:#0A2843;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
box-sizing: border-box;
width: 100%;
text-align: left;
font: bold 0px sans-serif;
padding: 5px 5px;
margin-top: -60px;
}
/* Footer left */
.footer-distributed .footer-left{
width: 100%;
}
/* The company logo */
.footer-distributed h3{
color: #ffffff;
font: normal 15px 'Cookie', cursive;
margin: 0;
}
.footer-distributed h3 span{
color: #5383d3;
}
</style>
</head>
<body>
<header>
</header>
<div class="bgimg"></div>
<div class="text">
<a href="https://docs.google.com/forms/d/e/1FAIpQLScG1AyDZDKm4ed7uzLkOMMOw1rZvirzk93Y25jG2JI0uWPx6A/viewform"><button type="button" class="btn btn-info btn-block btnhome"> Register</button></a>
<h2 class="neon">Painting</h2><br>
<br><br></div>
<br><br>
<br><div class="bg-text">
<p>
REGISTRATION FEE: Rs.50 per team<br><br>
<br>
<!-- DATE: 26.03.2018 (Monday)
<br>
VENUE: Chemistry Lab
<br>
TIME: 1:00-2:00 pm<br> -->
<h3>RULES</h3>
<pre><h3>
1. Participants will bring their own colours,
A3 size drawing sheet and other painting materials..<br>
2. Participants will be assigned with
onspot theme for painting..<br>
3. Time allotted will be one & half hour.<br>
</h3></pre>
<pre><h3>Faculty co-ordinator<br><br>
Prof Rekha Murthy(9731156201)<br>
Student co-ordinator<br><br>
Karthik Sharma (748325456)<br>
Nayana N(7337877938)</h3></pre>
</p>
</div>
<footer class="footer-distributed">
<div class="footer-left">
<h3><span><br></span>DD by Reetik Chitragupt</h3>
</div>
</body>
</html>