-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
100 lines (81 loc) · 1.52 KB
/
main.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
* {
font-family: Menlo, monospace;
}
/***** LAYOUT *****/
body {
margin: 80px; /* Bad idea */
padding: 0px;
font-family: Menlo, monospace;
}
textarea {
width: 100%;
outline: none;
border: none;
resize: none;
}
#evaluator {
border: 4px solid;
border-radius: 10px;
padding-top: 15px;
padding-bottom: 15px;
padding-left: 20px;
padding-right: 20px;
}
#left, #right {
float: left;
/* height: 40px; */
}
#evaluator {
width: 80%;
margin: auto; /* Center */
}
#output {
text-align: right;
}
/***** ASSERT *****/
/* EQUAL */
#evaluator { height: 600px }
#texarea { height: 600px }
/* SUM == 100% */
#left { width: 50% }
#right { width: 50% }
/***** FONTS *****/
textarea {
font-size: 16px;
font-family: Menlo, monospace;
}
/***** COLORS *****/
#output { color: #95E6CB; }
#input { color: #73D0FF; }
#evaluator { background-color: #1F2430; }
textarea { background-color: #1F2430; }
body { background-color: #0A0E14; }
#evaluator { border-color: #0A0E14; }
input {
background-color: #1F2430;
border: none;
font-size: 16px;
color: grey;
margin-bottom: 20px;
}
#progOut {
float: right;
}
#title {
color: #c0c0c0;
text-align: center;
}
#theme-list {
/* margin: 0 auto; */
text-align: left;
width: 75%;
}
#theme-list>a {
/* color: #C0C0C0; */
color: rgb(115, 145, 175);
/* color: #95afc0; */
text-decoration: none;
}
#theme-list>a:hover{
color: #6ab3e7;
}