-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
85 lines (66 loc) · 1.73 KB
/
style.css
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
@media screen {
@font-face {
font-family: 'Glass Antiqua';
font-style: normal;
font-weight: 500;
src: local('Glass Antiqua'), local('GlassAntiqua-Regular'), url('http://themes.googleusercontent.com/static/fonts/glassantiqua/v1/0yLrXKplgdUDIMz5TnCHNKyztDLpUjNAkGAPlCwy4fk.woff') format('woff');
}
@font-face {
font-family: 'Durga';
font-style: normal;
font-weight: 500;
src: local('Ekushey Durga'), local('Durga_03-09-2005.ttf');
unicode-range: U+980-9FF;
}
}
body {
background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAE0lEQVQIW2NkwAIYqSx48+bN/wAKRAOQQGdqtQAAAABJRU5ErkJggg==) repeat;
margin: 0;
font-family: 'Durga', 'Glass Antiqua';
font-size: 18px;
line-height: 22px;
}
::selection {background: #9cd69e;}
::-moz-selection {background: #9cd69e;}
::-webkit-selection {background: #9cd69e;}
#main {
position: absolute;
left: 50%;
min-height: 100%;
}
#wrapper {
position: relative;
left: -50%;
max-width: 400px;
}
#title {
width: 95%;
margin-top: 2.5em;
font-size: 24px;
color: #333;
text-align: center;
text-shadow: 0 1px 0 #aaa, 0 2px 0 #aaa;
}
#title a {
color: inherit;
text-decoration: none;
}
#title a:hover {
text-shadow: 0 1px 0 #9cd69e, 0 2px 0 #9cd6aa;
}
#instruction {
margin-top: -20px;
margin-bottom: 20px;
text-align: center;
color: #999;
}
#content {
background: #f0f0f0;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-moz-box-shadow: 0 -2px 2px #aaa;
-webkit-box-shadow: 0 -2px 2px #aaa;
box-shadow: 0 -2px 2px #aaa;
padding: 3em;
}