-
Notifications
You must be signed in to change notification settings - Fork 0
/
enter.html
59 lines (57 loc) · 1.23 KB
/
enter.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>جشنواره اوپن سورس فارسی</title>
<link rel="shortcut icon" href="favicon.ico">
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/gh/rastikerdar/[email protected]/dist/font-face.css">
<style type="text/css">
* {
padding: 0;
margin: 0;
}
body {
font-family: "Vazir", "Open Sans";
background-image: url('asset/background.jpg');
background-attachment: fixed;
background-position: top right;
background-size: 100%;
background-repeat: no-repeat;
background-color: #141824;
}
#container {
width: 50%;
margin-left: 250px;
margin-top: 330px;
}
@media (max-width: 1011px) {
body {
/*margin-top: -250px;*/
}
}
a {
text-decoration: none;
}
.button {
border-radius: 3px;
background-color: transparent;
color: white;
border: 1px solid white;
padding: 10px;
margin: 5px;
}
.button:hover {
background-color: black;
color: white;
}
</style>
</head>
<body>
<div id="page">
<div id="container">
<a href="index.html" class="button">فارسی Persian</a>
<a href="index.html" class="button">انگلیسی English</a>
</div>
</div>
</body>
</html>