-
Notifications
You must be signed in to change notification settings - Fork 6
/
scry.css
96 lines (90 loc) · 1.16 KB
/
scry.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
86
87
88
89
90
91
92
93
94
95
96
*{margin:0; padding: 0;}
body{
font-family: Arial, 'Open Sans', sans-serif;
background-color: #efefef;
}
h1,h2, p{
color: #777;
text-align: center;
}
h1{
font-size: 200px;
margin: 0.3em 0;
}
p, input{
font-size: large;
}
p{
margin: 1em 0;
}
p.credit{
font-size: small;
}
#cardImage {
float: right;
max-width: 30%;
}
form{
text-align: center;
}
input {
margin: 0 0 0 5px;
padding: 5px;
}
input#name{
width: 40%;
}
form, article{
width: 100%;
}
.shrink{
width: 70%;
}
.shrink h1{
font-size: 100px;
margin: 0.2em 0;
}
dl, ul{
width: 90%;
margin: 1em auto;
}
dt {
font-weight: bold;
margin-top: 0.5em;
color: #222;
}
dd {
text-align: justify;
margin-top: 0.1em;
padding: 15px 10px;
background-color: #777;
color: #fff;
}
ul{ list-style-type: none; }
li{
display: inline-block;
background-color: #8df;
border: 1px solid #6ce;
margin: 3px;
padding: 4px;
cursor: pointer;
}
/* On smallish widths */
@media (max-width: 767px){
.shrink{
width: 99%;
}
#cardImage{
max-width:40%;
float: none;
display: block;
margin: 1em auto;
}
h1{
font-size: 100px;
margin: 0.2em 0;
}
input#name{
width: 60%;
}
}