-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (64 loc) · 1.01 KB
/
style.css
File metadata and controls
73 lines (64 loc) · 1.01 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
html,
body {
height: 100%;
width: 100%;
overflow: hidden;
margin: 0;
padding: 0;
}
iframe {
position: fixed;
left: 40%;
height: 100%;
width: 60%;
border: none;
overflow: hidden;
}
.header {
position: fixed;
left: 0;
height: 100%;
width: 40%;
border: none;
overflow: hidden;
}
.header > div{
float:left;
}
.header .code {
width: 80%;
height: 100%;
}
.header textarea {
width: 96%;
padding:2%;
border-radius: 0px;
height: 96%;
color: #222222;
font-size: 18px;
}
.header .actions{
width:18%;
padding: 1%;
height: 100%;
}
.header .btn {
width: 100%;
cursor: pointer;
text-align: center;
height: 60px;
line-height: 60px;
margin:20px 1%;
border-radius: 4px;
color: white;
background-color:green;
}
.header a.help{
display: block;
text-align: center;
font-size: 32px;
color: black;
border: none;
text-decoration: none;
background-color: white;
}