-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
127 lines (104 loc) · 1.55 KB
/
index.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
* {
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial,
sans-serif, Apple Color Emoji, Segoe UI Emoji;
background-color: #f0f0f0;
color: #4e4e4e;
}
#loading {
display: block;
margin-top: 20vh;
}
#main {
display: none;
}
.logo {
width: 300px;
vertical-align: middle;
}
.intro {
vertical-align: middle;
margin-left: 10px;
font-style: italic;
}
.row {
display: flex;
}
.column {
flex: 50%;
padding: 5px;
padding-top: 0px;
}
button,
textarea {
border-radius: 5px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0px;
font-weight: 500;
}
.float-right {
float: right;
}
.float-left {
float: left;
}
.text-center {
text-align: center;
}
a {
color: #007bff;
text-decoration: none;
}
textarea {
width: 100%;
height: 200px;
margin: 20px 0px;
margin-top: 5px;
border: 1px solid #dfdfdf;
height: 60vh;
outline: none;
padding: 5px;
font-family: Consolas, "Ubuntu Mono", "Courier New", Courier, monospace;
resize: none;
}
#settingsTextArea {
height: 15vh;
}
button {
padding: 10px 25px;
margin: 0px 2px;
border: 0px;
outline: none;
background-color: #dfdfdf;
}
button.green {
background-color: #2db55d;
color: white;
}
button.green:hover {
background-color: #2aaf58;
}
button.green:active {
background-color: #279f4e;
}
button:hover {
background-color: #d1d1d1;
}
button:active {
background-color: #a5a5a5;
}
textarea:focus,
button:focus {
box-shadow: 0px 0px 0px 5px rgba(0, 123, 255, 1);
}
.credits {
color: #8e8e8e !important;
}