-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (73 loc) · 1.4 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
html, body {
height: 100%;
width: 100%;
font-size: 1em;
overflow: hidden;
font-family: 'Courier New', Courier, monospace;
}
a {
color: blue;
text-decoration: underline;
}
.title {
font-size: 1.5em;
}
.left {
padding: 2em;
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 100%;
}
.right {
position: absolute;
top: 0;
right: 0;
}
.container {
margin: 1em;
}
button {
font-family: 'Courier New', Courier, monospace;
background-color: #555555;
border: none;
color: #fff;
padding: 10px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
width: 200px;
margin:0.2em;
}
button:hover {
background-color: #e7e7e7;
color: #000;
}
button:focus, input:focus, select:focus {
outline: none;
}
select {
-webkit-appearance: button;
-webkit-border-radius: 2px;
-webkit-padding-end: 20px;
-webkit-padding-start: 2px;
-webkit-user-select: none;
background-image: url(arrow.png), -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
background-position: 97% center;
background-repeat: no-repeat;
color: #555555;
font-size: inherit;
margin: 20px;
overflow: hidden;
padding: 10px 16px;
text-overflow: ellipsis;
white-space: nowrap;
width: 300px;
}
.preview {
height: 400px;
width: 700px;
margin: 4em;
}