-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
65 lines (63 loc) · 1.42 KB
/
style.scss
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Helvetica, arial, nimbussansl, liberationsans, freesans, clean, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.main {
padding: 20px 60px;
input[type="text"] {
width: 200px;
margin: 0 30px;
border-radius: 4px;
height: 36px;
font-size: 14px;
color: #555;
background-color: #FFF;
border: 1px solid #ccc;
outline: none;
padding-left: 10px;
}
button {
height: 36px;
padding: 0 14px;
background-color: #5a98de;
border:1px solid #5a98de;
border-radius: 4px;
cursor: pointer;
}
.form-group {
position: relative;
margin: 20px 10px;
}
.form-factory {
position: relative;
width: 500px;
border-right: 2px solid black;
label {
font-weight: bold;
}
button {
position: relative;
left: 300px;
}
.build, .delete {
margin-bottom: 30px;
.form-group {
label {
width: 100px;
display: inline-block;
}
}
}
}
.form-result {
position: absolute;
left: 600px;
top: 20px;
max-width: 600px;
border: 2px solid yellow;
}
}