-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.scss
More file actions
57 lines (47 loc) · 769 Bytes
/
styles.scss
File metadata and controls
57 lines (47 loc) · 769 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
56
57
body {
font-family: Helvetica;
}
fieldset {
legend {
font-weight: bold;
background:pink;
}
}
input, textarea {
&[required] {
border: 1px solid red;
}
}
a {
color: blue;
> b {
color: green;
}
}
$mycolor: blanchedalmond;
input {
// border: none;
// border-bottom: 1px dashed;
border: 1px solid #999;
box-shadow: inset 1px 1px 4px fade-out(black,.4);
padding: 10px;
font-size: 15px;
font-family: Georgia;
outline: none;
border-radius: 36px;
color: $mycolor;
background:black;
}
select {
font-family: Georgia;
padding: 10px;
font-size: 20px;
}
option {
padding: 10px;
}
button {
background: #888;
border: none;
color: white;
}