-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
135 lines (110 loc) · 1.91 KB
/
stylesheet.css
File metadata and controls
135 lines (110 loc) · 1.91 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
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
h1, h2 {
color: #36C3E0;
font-family: 'Open Sans', sans-serif;
margin-left: 60px;
}
/*List*/
.list .item {
display: inline-block;
font-family: 'Open Sans', sans-serif;
font-size: 12px;
margin: 18px 20px;
text-align: center;
}
.item .kitty {
background: url(http://placekitten.com/g/175/175) no-repeat center;
border-radius: 60px;
height: 120px;
margin-bottom: 10px;
width: 120px;
}
.item a {
color: #666666;
display: block;
font-size: 14px;
text-decoration: none;
}
.item p {
color: #2f4f4f;
margin-top: 5px;
}
/*Form*/
.inputs {
font-family: Trebuchet, sans-serif;
font-size: 13px;
margin-left: 60px;
width: 254px;
}
.inputs label {
clear: left;
}
.inputs input, select, textarea {
margin: 10px 0 10px 0;
}
.inputs .personal-info {
text-align: right;
display: block;
}
.inputs .personal-info input {
margin-left: 5px;
}
#textarea-label {
display: block;
margin: 5px 0 15px 0;
}
.inputs textarea {
height: 100px;
width: 220px;
display: block;
}
.inputs input[type=radio] {
margin: 5px 3px 5px 3px;
}
.inputs #submit {
background-color: purple;
border: none;
color: white;
cursor: pointer;
height: 40px;
width: 65px;
}
/*Popover*/
.popover-stuff {
height: 200px;
margin: 40px 0 0 34px;
width: 240px;
}
h2.trigger {
cursor: pointer;
margin: 0 0 0 25px;
}
h2.trigger:hover ~ .popover, .popover:hover {
display: block;
}
.popover {
display: none;
}
.popover .rectangle {
background-color: #cd3238;
border-radius: 15px;
height: 50px;
}
.popover .arrow-up {
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 7px solid #cd3238;
height: 0;
margin: 0 auto;
width: 0;
}
#popover-button {
background-color: #e7e7e7;
border-radius: 0;
border: none;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
height: 22px;
margin: 14px 0 0 94px;
width: 52px;
cursor: pointer;
}