-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (66 loc) · 998 Bytes
/
style.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
body {
margin: 0;
}
a {
text-decoration: none;
color: black;
cursor: pointer;
}
nav {
background-color: #e8e8e8;
margin: 0;
height: 4rem;
width: 100vw;
display: flex;
align-items: center;
justify-content: flex-start;
font-family: HeadlandOne;
}
nav h1 {
margin: 0;
color: #252525;
}
img {
width: 40px;
height: 40px;
object-fit: cover;
}
#bf-logo {
margin-left: 30px;
padding-bottom: 5px;
}
#github-logo {
margin-left: auto;
margin-right: 30px;
}
textarea {
resize: none;
word-wrap: break-word;
color: #63ff55;
}
.container {
padding: 2rem 2rem;
display: grid;
grid-template: 50vh / 70fr 30fr;
}
#editor {
margin-right: 2rem;
padding: 1rem;
background-color: #1d4167;
}
#terminal {
padding: 1rem;
background-color: rgb(21, 19, 19);
border-radius: 0 0 10px 10px;
}
button {
width: 4rem;
height: 2rem;
margin: 0;
gap: 10px;
border-radius: 0 0 10px 10px;
background: #47c83b;
}
button:hover {
background-color: #16a13e;
}