-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
140 lines (138 loc) · 3.41 KB
/
styles.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
body {
margin: 0;
padding: 0;
background-color: #fff;
font-family: "Lucida Grande", "Helvetica Neue", Roboto, "Droid Sans", Prelude, Helvetica, Arial, sans-serif;
font-size: 100%;
color: #334;
}
@media only screen and (max-width: 768px) {
body {
font-size: 87.5%;
}
}
section.congratulations {
display: block;
padding: 50px;
text-align: right;
position: absolute;
top: 0;
left: 0;
right: 50%;
bottom: 0;
border-right: 6px solid #ace;
background-color: #79b;
background-image: -webkit-gradient(linear, left top, right top, from(#79b), to(#79b));
background-image: -webkit-linear-gradient(left, #9bd, #79b);
background-image: -moz-linear-gradient(left, #9bd, #79b);
background-image: -ms-linear-gradient(left, #9bd, #79b);
background-image: -o-linear-gradient(left, #9bd, #79b);
background-image: linear-gradient(left, #9bd, #79b);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#99bbdd', EndColorStr='#7799bb');
}
section.congratulations h1 {
margin: 0 0 25px 0;
padding: 0;
color: #fff;
font-family: 'Lobster Two', cursive;
font-size: 4.5em;
text-shadow: 3px 3px 0 #334;
-webkit-transition: all .3s linear;
-moz-transition: all .3s linear;
-o-transition: all .3s linear;
transition: all .3s linear;
}
section.congratulations p {
text-shadow: 1px 1px 0 #334;
font-size: 1.25em;
color: #fff;
line-height: 1.5em;
margin: 0 0 25px 0;
}
section.congratulations a, section.congratulations a:link, section.congratulations a:visited {
color: white;
text-decoration: underline;
}
section.congratulations aside {
display: block;
color: white;
font-size: 0.875em;
font-style: italic;
}
section.instructions {
display: block;
padding: 50px;
text-align: left;
background-color: #fff;
position: absolute;
top: 0;
left: 50%;
right: 0;
bottom: 0;
}
section.instructions h2 {
margin: 0 0 25px 0;
padding: 0 0 0 30px;
color: #334;
font-family: 'Lobster Two', cursive;
font-size: 1.875em;
padding-bottom: 3px;
border-bottom: 6px solid #f90;
background: url(/logo_aws_reduced.gif) left center no-repeat;
}
section.instructions ul {
padding: 0;
margin: 0 0 25px 0;
list-style-type: square;
list-style-position: inside;
}
section.instructions ul li {
margin-left: 0;
padding-left: 0;
color: #f90;
font-size: 0.875em;
line-height: 1.5em;
}
section.instructions a, section.instructions a:link {
color: #79b;
text-decoration: underline;
}
section.instructions a:visited {
color: #ace;
}
section.instructions a:hover {
color: #f90;
}
@media only screen and (max-width: 1024px) {
section.congratulations h1 {
font-size: 4em;
}
}
@media only screen and (max-width: 900px) {
section.congratulations h1 {
font-size: 3.5em;
}
}
@media only screen and (max-width: 768px) {
section.congratulations h1 {
font-size: 3em;
}
}
@media only screen and (max-width: 650px) {
html {
-webkit-text-size-adjust: none;
}
section.congratulations, section.instructions {
position: relative;
margin:; 0;
border: 0;
padding: 10px;
width: 100%;
top: auto;
left: auto;
right: auto;
bottom: auto;
border-bottom: 6px solid #ace;
text-align: left;
}
}