forked from POSSF/POSSF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.txt
89 lines (84 loc) · 2.07 KB
/
index.txt
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Persian Open-Source Software Festival - جشنوارهٔ نرمافزار متنباز فارسی</title>
<link rel="shortcut icon" href="favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/gh/rastikerdar/[email protected]/dist/font-face.css"> -->
<link type="text/css" rel="stylesheet" href="asset/font.css">
<style type="text/css">
* {
padding: 0;
margin: 0;
}
body {
font-family: "Vazir", "Open Sans";
background-image: url('asset/background.jpg');
background-position: right top;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
background-color: #141824;
width: 100vw;
height: 100vh;
overflow-x: hidden;
}
a {
text-decoration: none;
}
@media only screen and (min-width: 766px) {
#container {
width: 100%;
height: 100vh;
margin-left: 10em;
display: flex;
justify-content: flex-start;
align-items: center;
}
}
@media only screen and (min-width: 556px) and (max-width: 765px){
#container{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
margin-left: 0 ;
}
}
@media only screen and (max-width: 555px) {
#container{
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-left: 0 !important;
}
}
.button {
display: inline-block;
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="fa/" class="button">Persian فارسی</a>
<a href="en/" class="button">English انگلیسی</a>
</div>
</div>
</body>
</html>