-
Notifications
You must be signed in to change notification settings - Fork 2
/
audition.css
86 lines (74 loc) · 1.39 KB
/
audition.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
body {
background-color: #f9f5ea;
}
.shell {
max-width: 500px;
margin: 0 auto;
padding: 20px;
position: relative;
}
h1 {
font-family: "Chaparral Pro", Garamond, Georgia, serif;
font-weight: 350;
margin-top: 100px;
}
p#output {
font-family: "Chaparral Pro", Garamond, Georgia, serif;
font-size: 18px;
line-height: 2.2;
margin: 30px 0 50px;
}
p .audition {
position: relative;
}
p .audition .text {
display: inline;
color: #888;
}
p .audition ul {
margin: 0;
padding: 0;
display: block;
width: 1000px;
position: absolute;
left: 0px;
top: -18px;
}
p .audition ul li {
height: 11px;
display: inline-block;
font-size: 11px;
color: #aaa;
}
p .audition ul li:last-of-type:after { content: ""; }
p .audition ul li:after { content: "•"; margin: 0 4px; }
p .audition ul li.selected { display: none; }
label {
text-transform: uppercase;
font-family: Helvetica, Arial, sans-serif;
font-size: 11px;
font-weight: 700;
color: #888;
display: block;
margin-bottom: 7px;
}
textarea {
width: 100%;
min-height: 150px;
border: none;
padding: 15px;
font-size: 13px;
background-color: rgba(255,255,255,0.7);
}
textarea:focus {
outline:0;
outline:none;
-moz-appearance:none;
background-color: rgba(255,255,255,1);
-webkit-box-shadow: inset 0px 3px 4px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1280px) {
.shell {
padding: 10px;
}
}