-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
130 lines (112 loc) · 2.01 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0px;
height: 100vh;
}
* {
box-sizing: border-box;
}
.column_l {
float: left;
width: 70%;
padding: 10px;
height: 100%;
}
.column_r {
float: right;
width: 30%;
padding: 10px;
background-color: #eee;
height: 100%;
border-left: 1px solid #ddd;
}
/* Clear floats after the columns */
.row {
flex:1;
height: calc(100% - 50px);;
}
.CodeMirror {
border: 1px solid #eee;
height: auto;
font-size: 12pt;
}
.work-area {
margin: 20px;
}
.check-button {
margin-left: 20px;
}
.result {
background-color: #fff;
border: 1px solid #ccc;
padding: 10px;
font-family: "Lucida Console", "Courier New", monospace;
overflow:auto;
}
button {
border: none;
padding: 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
button:hover {
background-color: #ddd;
}
.button4 {
background-color: rgba(51, 51, 51, 0.05);
border-radius: 8px;
border-width: 0;
color: #333333;
cursor: pointer;
display: inline-block;
font-size: 14px;
font-weight: 500;
line-height: 20px;
list-style: none;
padding: 10px 12px;
text-align: center;
transition: all 200ms;
vertical-align: baseline;
white-space: nowrap;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
select {
padding: 10px;
}
.code-wrapper {
margin: 20px;
padding: 0px;
border: 2px solid black;
}
/* Add a black background color to the top navigation */
.topnav {
background-color: #333;
overflow: hidden;
height:50px;
}
/* Style the links inside the navigation bar */
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
height:50px;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #ddd;
color: black;
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: #046DAA;
color: white;
}