-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
98 lines (86 loc) · 1.37 KB
/
index.css
File metadata and controls
98 lines (86 loc) · 1.37 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
* {
box-sizing: border-box;
}
html,
body {
padding: 0;
margin: 0;
height: 100%;
}
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.container {
position: relative;
top: 0;
left: 0;
height: inherit;
}
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.pen {
position: absolute;
top: 0;
left: 0;
z-index: 1000;
width: 100%;
height: 100%;
}
.turtle {
position: absolute;
top: 0;
left: 0;
z-index: 2000;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0);
}
.command {
position: absolute;
bottom: 0;
width: 100%;
height: 200px;
border: 1px solid #ddd;
background-color: #fff;
padding: 10px;
font-size: 16px;
z-index: 10000;
resize: none;
}
.button {
position: absolute;
width: 100px;
height: 30px;
line-height: 1;
font-weight: bold;
outline: none;
cursor: pointer;
}
.button.run {
right: 20px;
bottom: 20px;
z-index: 10001;
background-color: mediumseagreen;
border: 1px solid seagreen;
transition: background-color 0.25s ease 0s;
}
.button.run:hover {
background-color: seagreen;
}
.button.reset {
right: 150px;
bottom: 20px;
z-index: 10002;
background-color: lightskyblue;
border: 1px solid dodgerblue;
transition: background-color 0.25s ease 0s;
}
.button.reset:hover {
background-color: dodgerblue;
}