-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
79 lines (69 loc) · 1.09 KB
/
styles.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
* {
margin: 0;
padding: 0;
outline: none;
text-decoration: none;
}
body {
width: 100%;
height: 100vh;
overflow: hidden;
}
.playground {
display: flex;
width: 100%;
height: 100%;
background-color: #21262d;
color: #f7f7f7f7;
}
.navbar {
padding-left: 10px;
display: flex;
justify-content: space-around;
align-items: center;
background-color: #1d2127;
width: 100%;
height: 8%;
}
.navbar__image {
width: 20%;
}
.navbar__link {
width: 15%;
color: #f7f7f7;
font-weight: bold;
font-size: 18px;
}
.navbar__run_code_button {
background: none;
border: none;
width: 15%;
font-size: 18px;
font-weight: bold;
color: #f7f7f7;
cursor: pointer;
}
.navbar__run_code_button:focus {
outline: none;
}
.navbar__run_code_button:hover {
opacity: 1.2;
}
.playground__code {
resize: none;
width: 50%;
height: 100%;
border: none;
border-right: 1px solid #282d34;
background: transparent;
padding: 10px;
font-weight: bold;
font-size: 16px;
color: #f7f7f7;
}
.playground__output {
color: #f7f7f7;
width: 50%;
height: 100%;
padding: 10px;
}