-
-
Notifications
You must be signed in to change notification settings - Fork 328
Expand file tree
/
Copy pathreactpy-view.css
More file actions
43 lines (40 loc) · 960 Bytes
/
reactpy-view.css
File metadata and controls
43 lines (40 loc) · 960 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
.interactive {
-webkit-transition: 0.1s ease-out;
-moz-transition: 0.1s ease-out;
-o-transition: 0.1s ease-out;
transition: 0.1s ease-out;
}
.widget-container {
padding: 15px;
overflow: auto;
background-color: var(--color-code-background);
min-height: 75px;
}
.widget-container .printout {
margin-top: 20px;
border-top: solid 2px var(--color-foreground-border);
padding-top: 20px;
}
.widget-container > div {
width: 100%;
}
.enable-widget-button {
padding: 10px;
color: #ffffff !important;
text-transform: uppercase;
text-decoration: none;
background: #526cfe;
border: 2px solid #526cfe !important;
transition: all 0.1s ease 0s;
box-shadow: 0 5px 10px var(--color-foreground-border);
}
.enable-widget-button:hover {
color: #526cfe !important;
background: #ffffff;
transition: all 0.1s ease 0s;
}
.enable-widget-button:focus {
outline: 0 !important;
transform: scale(0.98);
transition: all 0.1s ease 0s;
}