-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.css
63 lines (56 loc) · 964 Bytes
/
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
html, body {
background: teal;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
font-family: 'Roboto', sans-serif;
}
.container {
font-weight: 900;
font-size: 80px;
width: 80%;
text-align: center;
color: white;
}
.title {
text-shadow:
-5px 5px 0px #00e6e6,
-10px 10px 0px #01cccc,
-15px 15px 0px #00bdbd;
}
#text-container {
background: #263238;
width: 100%;
height: 325px;
border-radius: 10px;
margin: 40px 0 30px;
font-size: 14px;
text-align: left;
}
::-webkit-scrollbar {
display: none;
}
.CodeMirror,
.CodeMirror-scroll {
border-radius: 10px;
}
button {
font-family: 'Roboto', sans-serif;
padding: 10px;
font-weight: 900;
border-radius: 5px;
font-size: 18px;
background: #00bdbd;;
color: white;
border-color: white;
outline: none;
cursor: pointer;
border: 3px outset;
}
button:active {
border: 3px inset;
}