-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (89 loc) · 1.08 KB
/
style.css
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
*{
margin:0;
padding:0;
font-family:sans-serif;
font-weight:lighter;
font-size:16px;
box-sizing:border-box;
color:#333;
}
h1{
font-size:1.5em;
margin-bottom:1em;
}
#input h1{
text-align:center;
}
h1 span,
h2 span{
font-size:1em;
}
h2{
font-size:1.5em;
margin-bottom:0.5em;
}
article{
background:#eeeeee;
padding:1.5em;
}
form{
max-width:30em;
margin: 0 auto;
}
input,
textarea{
display:block;
width:100%;
padding:0.5em;
border-radius:2px;
border: none;
margin-bottom:1.5em;
}
textarea{
height:14em;
}
section{
padding: 1.5em;
border:1px solid #ccc;
margin-bottom:1.5em;
border-radius:2px;
min-height: 4em;
}
.row{
display: table;
width:100%;
margin-bottom:1.5em;
}
.row section{
display: table-cell;
width: 49%;
}
.row section:last-child{
border-left: 2%;
}
.right{
text-align:right;
}
img#logo{
display:none;
max-width:50%;
}
section
h3{
font-size:1.2em;
margin-bottom:0.5em;
}
#output{
display:none;
}
@media print {
article{
background:white;
}
#input{
display:none;
}
#output{
display:block;
}
}