-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.less
More file actions
103 lines (85 loc) · 1.36 KB
/
style.less
File metadata and controls
103 lines (85 loc) · 1.36 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
@import url('https://fonts.googleapis.com/css?family=Raleway:700');
@import url('https://fonts.googleapis.com/css?family=Roboto');
* {
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
background: #eee;
font-family: "Roboto", sans-serif;
}
.head {
font-family: "Raleway", sans-serif;
text-align: center;
color: #555;
padding: 30px 0;
}
.formWrap {
width: 400px;
margin: 0 auto;
border: 3px double #555;
padding: 10px;
}
form {
& > div {
position: relative;
display: flex;
flex-wrap: wrap;
margin: 5px 0;
}
}
label {
display: block;
width: 120px;
height: 25px;
font-size: 14px;
}
#bio {
resize: none;
width: 258px;
padding: 10px;
}
input {
width: 150px;
outline: none;
border: 1px solid #555;
padding: 0 10px;
&:focus {
transform: scale(1.05);
}
}
select {
border: 1px solid #555;
outline: none;
&:focus {
transform: scale(1.05);
}
}
textarea {
border: 1px solid #555;
outline: none;
&:focus {
transform: scale(1.05);
}
}
#submit {
margin: 0 auto;
width: 100px;
height: 20px;
}
.errorBlock {
color: #FF1919;
text-align: center;
}
.success {
background: #0DFF96;
}
.error {
background: #FF1919;
}
footer {
text-align: center;
padding: 30px;
}