-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
149 lines (140 loc) · 2.62 KB
/
main.css
File metadata and controls
149 lines (140 loc) · 2.62 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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
html{
position: relative;
min-height: 100%;
}
body{
background-color: rgb(228, 227, 227);
margin: 0px;
}
li.active {
background-color: #F8F8F8;
color: black;
}
.nav {
list-style-type: none;
margin: 0;
padding: 0;
width: 250px;
background-color: rgb(56, 52, 52);
position: fixed;
height: 100%;
overflow: hidden;
}
.navigation {
margin: 30px;
}
.nav li {
display: block;
color: #F46524;
padding: 8px 16px;
text-decoration: none;
height: 60px;
font-size: 27px;
font-family: "Courier New";
display: flex;
align-items: center;
justify-content: center;
}
.main-page {
margin-left: 250px;
padding: 1px 16px;
margin-top: 0px;
width: 50%;
background-color: #F8F8F8;
display: block;
position:absolute;
}
.content{
margin: 30px;
margin-bottom: 200px;
font-size: 26px;
}
.header {
width: 250px;
background-color: #f46524;
height: 100px;
font-size: 30px;
font-family: "Courier New";
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}
input{
width:20px
}
.hidden{
display:none;
}
.nav li:hover {
background-color:#8B8B8B;
}
.lits{
list-style-type: circle;
color: #F46524;
}
h2, h3{
color: #F46524;
font-family: "Courier New"
}
table {
color: #333; /* Lighten up font color */
font-family: Helvetica, Arial, sans-serif; /* Nicer font */
width: 100%;
border-collapse: collapse;
border-spacing: 0;
font-size: 22px;
}
td, th {
border: 1px solid #CCC;
width: 20px;
height: 50px;
}
th {
background: #F3F3F3; /* Light grey background */
font-weight: bold; /* Make sure they're bold */
}
td { /* Lighter grey background */
text-align: center; /* Center our text */
}
pre code {
white-space: pre-wrap;
background-color: #eee;
border: 1px solid #999;
display: block;
padding-right: 20px;
padding-left: 20px;
text-align: center;
margin:auto;
}
textarea{
font-size: 20px;
font-family: "Courier New";
color: #F46524;
outline: none;
background-color: #333;
border: none;
font-weight: bold;
resize: none;
}
button{
margin:auto;
display:block;
height:50px;
width:200px;
font-size: 20px;
font-family: "Courier New";
background-color: #F46524;
color: white;
border-radius: 12px;
border: none;
}
#input, #source, #res{
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}