_create_comment.scss
964 Bytes
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
//FIXME change this filename to something that make sense
#create-comment, #create-report-abuse, #create-tag {
background: $ice;
padding: $unit;
border: 1px solid $shadow;
.item {
margin-top: $unit;
}
h1 {
padding: $unit $unit * 1.5;
border-bottom: 1px solid $lightgrey;
font-size: $unit * 2;
line-height: $unit * 3;
font-weight: 700;
position: relative;
color: $lightgreen;
}
form {
label {
border: 0;
color: $lightgreen;
}
p {
margin: 20px 10px 20px 26px;
}
.button {
background: $lightgreen;
color: $white;
}
.item {
background: transparent;
border: 0;
}
textarea {
border: 1px solid $lightgreen;
display: block;
width: 96%;
color: $lightgreen;
padding: $unit / 2;
background: transparent;
margin-right: 16px;
&:focus {
border: 2px solid $lightgreen;
}
}
}
}