-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle.css
68 lines (59 loc) · 1.06 KB
/
style.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
body {
font-family: sans-serif;
text-align: center;
background: #ffffff;
}
header {
color: #0099FF;
font-family: sans-serif;
font-size: 1.5em;
font-weight: bold;
}
#feedbackbox {
margin: auto;
padding: 20px;
border-radius: 8px;
border: 1px solid #ededed;
width: 70%;
}
#intro {
color: #000000;
font-family: sans-serif;
margin-top: 10px;
margin-bottom: 20px;
}
#intro > span {
font-weight: bold;
margin: 5px;
}
#feedbackbox textarea {
font-family: sans-serif;
min-width: 500px;
width: 80%;
min-height: 300px;
border: solid 1px #b3b3b3;
background-color: #f2f2f2;
margin: 10px;
padding: 8px;
}
#feedbackbox input[type=text] {
margin: 5px;
padding: 5px;
border-style: 1px solid #b3b3b3;
}
input[type=button], input[type=submit], input[type=reset] {
background-color: #0099FF;
color: #ffffff;
border: 1px solid #0066CC;
line-height: 1.6em;
padding: 8px;
}
footer {
margin-top: 15px;
font-style: italic;
color: #909090;
font-family: sans-serif;
}
footer a, iframe { /* github button */
padding-top: 15px;
}