-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
62 lines (55 loc) · 985 Bytes
/
styles.css
File metadata and controls
62 lines (55 loc) · 985 Bytes
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
*,
*::before,
*::after {
margin: 0;
padding: 0;
}
body {
background-color: #8EC5FC;
background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
}
#terminal {
width: 80%;
height: 20em;
resize: none;
background: black;
border-radius: 4px;
color: white;
font-size: 18px;
}
#inputBox {
width: 70%;
height: 3em;
margin-top: 20px;
background: transparent;
border: none;
box-shadow: 0px 0px 6px 2px white;
border-radius: 4px;
font-size: 17px;
padding: 0px 10px;
}
#submitButton {
height: 3em;
margin-top: 20px;
margin-left: 20px;
background: #6e0b95;
border: none;
border-radius: 10px;
color: white;
font-size: 17px;
padding: 0px 20px;
}
#submitButton:hover {
background: #dd86ff;
cursor: pointer;
}
#title {
text-align: center;
margin: 50px;
font-size: 71px;
color: #6e0b95;
font-style: italic;
}
.content {
text-align: center;
}