-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemorystyle.css
63 lines (52 loc) · 1.06 KB
/
memorystyle.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
body {
margin: 0;
padding: 0;
text-align: left;
font: 10pt "Lucida Grande", sans-serif;
}
html {
-webkit-text-size-adjust: none;
}
h1 {
padding: 0px; color:#FFF; background-color: transparent; font:16pt "Lucida Grande", Verdana, Arial, sans-serif; text-shadow: #000 0px 2px 0px; text-align: center;
}
p {
padding: 0px; color:#FFF; background-color: transparent; font:12pt "Lucida Grande", Verdana, Arial, sans-serif; text-shadow: #000 0px 2px 0px; text-align: center;
}
.about {
color: #eee;
font-size: 8pt;
}
table {
color: #000;
background-color: #FFF;
margin: 20px auto;
padding: 0px;
border-collapse: collapse;
}
td {
text-align: center;
padding: 0px;
border: 20px solid #FFF;
}
tr {
padding: 10px;
}
.kort {
cursor: pointer;
}
a {
color: #98ff9f;
text-decoration: none;
outline: none;
}
/* Portrait */
@media screen and (orientation:portrait) {
/* Portrait styles here */
body { background-color: #F33; }
}
/* Landscape */
@media screen and (orientation:landscape) {
/* Landscape styles here */
body { background-color: #3F3; }
}