-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcodekata.css
78 lines (70 loc) · 1.36 KB
/
codekata.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
.footer {
position: fixed;
bottom: 0;
left: 10px;
color: red;
display: flex;
flex-direction: row;
font-size: xx-large;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.footer a {
color: red;
/* font-size: xx-large; */
/* font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; */
margin-bottom: 15px;
}
.page {
display: flex;
flex-direction: row;
}
.kata {
width: 40%;
height: 91vh;
margin-right: 10px;
border-style: solid;
border-color: red;
border-width: 1px;
font-size: large;
}
.solution {
width: 100%;
height: 100vh;
}
.run {
padding-left: 20px;
padding-right: 20px;
padding-top: 5px;
padding-bottom: 5px;
float: right;
text-align: center;
margin-top: 10px;
z-index: 10;
background-color: white;
border-style: solid;
border-color: red;
border-width: 2px;
color: red;
cursor: pointer;
}
.result {
width: 99%;
height: 20vh;
border-style: solid;
border-color: red;
border-width: 1px;
margin-top: 10px;
}
.CodeMirror {
height: 50vh;
resize: vertical;
border-style: solid;
border-color: red;
border-width: 1px;
font-size: large;
}
.CodeMirror-gutters {
border-right: 1px solid #f51717;
background-color: #ab2323;
white-space: nowrap;
}