-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (82 loc) · 1.79 KB
/
style.css
File metadata and controls
94 lines (82 loc) · 1.79 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
@charset "UTF-8";
body {
font: 14px "PTSans",sans-serif; }
.flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.inputs {
color: #222222;
padding: 20px 15px; }
.document, .inputs {
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1; }
.labeled-input {
display: inline-block;
position: relative;
width: 50%;
padding: 0 15px;
margin-bottom: 20px; }
.labeled-input span {
display: block;
text-align: center;
margin-bottom: 5px; }
.labeled-input input {
display: block;
padding: 5px 7px;
width: 100%; }
.input_wrong {
background-color: rgba(255, 0, 0, 0.1);
border-color: red; }
.labeled-input--error {
display: block;
position: absolute;
font-size: 12px;
color: red;
left: 25px;
bottom: -20px; }
.document {
line-height: 22px;
-webkit-box-shadow: 0 0 10px;
box-shadow: 0 0 10px;
padding: 40px 30px; }
.document-header {
width: 300px;
float: right; }
.document-title {
clear: both;
margin: 100px 0 20px;
text-align: center; }
.document--sign {
display: block;
width: 200px;
margin-bottom: 50px;
border-bottom: 1px solid black; }
.document--sign:after {
content: "(\41B\438\447\43D\430\44F \43F\43E\434\43F\438\441\44C)";
display: block;
position: relative;
top: 25px;
text-align: center; }
.document--generated {
display: inline-block;
text-align: center; }
.document--generated + .document--generated {
margin-left: 5px; }
.btn {
display: block;
margin: auto;
border: none;
font-size: 11px;
padding: 10px 20px;
cursor: pointer;
font-weight: bold;
text-transform: uppercase;
color: white;
background-color: #3ea7d0; }