-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (85 loc) · 1.38 KB
/
style.css
File metadata and controls
101 lines (85 loc) · 1.38 KB
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
*{
box-sizing: border-box;
}
body{
margin: 0;
}
.container{
display: grid;
grid-template-columns: 1fr 1fr;
}
.container.code{
height:60vh;
}
.console-container > div{
border:1px solid black;
}
.container > div{
border: 1px solid black;
}
.hindiscript-container textarea,
.javascript-container code{
width:100%;
height: 100%;
}
.hindiscript-container{
position: relative;
}
.hint-container{
position:absolute;
right:0;
top:0;
list-style: none;
background-color: black;
color:white;
margin: 0;
padding: 0;
width:200px;
cursor: pointer;
}
.hint-container li{
padding:2px 5px;
}
.hint-container li:hover{
background-color: blue;
}
.run-code-btn{
display: block;
margin-left: auto;
background-color: #2076d2;
padding:6px 16px;
color:white;
border:none;
cursor: pointer;
}
.run-code-btn:hover{
opacity: 0.9;
}
footer{
text-align: center;
}
.liked-by-btn{
font-size: 30px;
border: none;
background-color: transparent;
cursor: pointer;
}
.selection-container{
width:50%;
text-align:left;
padding: 10px 0;
}
.npm-logo{
height:20px;
margin-left: 10px;
}
.npm-logo-container{
display: flex;
justify-content: center;
line-height: 16px;
}
@media screen and (max-width: 768px) {
.container.code{
height:˝calc(50vh - 40px);
}
}