-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
52 lines (47 loc) · 937 Bytes
/
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
body {
background-color: #3d3d3d;
font-family: Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif;
}
#container {
margin: auto;
}
textarea {
resize: none;
background: #fafafc;
border: 1px solid grey;
/*-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;*/
border-top-right-radius: 10px;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
#submit {
border: 1px solid grey;
background: #6e9e2d;
color: white;
font-size: 1.1em;
height: 36px;
padding: 6px;
letter-spacing: 0.1em;
font-family: inherit;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
margin-top: 10px;
float: right;
}
.feedback {
margin: auto;
}
.again {
text-decoration: none;
border: 1px solid grey;
background: #6e9e2d;
color: white;
padding: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}