-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (89 loc) · 1.43 KB
/
Copy pathstyle.css
File metadata and controls
103 lines (89 loc) · 1.43 KB
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
body {
font-family: Helvetica, Arial;
font-size: 27px;
margin: 0 auto;
max-width: 960px;
padding: 40px 10px;
line-height: 1.65em;
background: #FD6A6E;
color: #fff;
font-weight: 300;
}
.logo{
width: 100%;
}
.logo img {
margin: 0 auto;
display: block;
}
.description {
margin: 80px auto 40px;
text-align: center;
}
.bucket {
width: 100%;
margin-bottom: 40px;
display: inline-block;
}
.choice-bucket {
width: 33.333333%;
float: left;
display: inline-block;
margin: 0;
padding: 0;
}
.choice-bucket input {
font-size: 18px;
margin: 15px 4%;
padding: 16px 0;
width: 92%;
color: #BB475C;
border-radius: 6px;
border: 0;
outline: 0;
text-indent: 20px;
}
.highlight {
font-size: 18px;
margin-left: 30px;
opacity: .8;
line-height: 24px;
}
#answers {
/* opacity: 0; */
margin: 60px 0;
background: #fff;
border-radius: 6px;
color: #BB475C;
transition: 1s linear;
overflow: hidden; /* add this */
}
#answers p {
max-width: 760px;
margin: auto;
padding: 80px 0;
}
#answers p span {
font-weight: bold;
}
form input[type=submit] {
background: #B5D269;
border: 0;
color: #fff;
font-size: 20px;
padding: 1em 2em;
cursor: pointer;
margin: 0 auto 60px;
display: block;
text-align: center;
border-radius: 6px;
font-weight: bold;
}
.hide {
opacity: 0;
height: 0;
}
.show {
opacity: 1;
height: 100%;
}