-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
84 lines (69 loc) · 1.2 KB
/
index.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
80
81
82
83
84
.page {
margin: 15px;
}
.page__title {
padding-bottom: 20px;
text-align: center;
}
.page__image {
margin-right: 15px;
}
.example__title {
background-color: #de0790;
color: white;
padding: 10px;
transition: 0.4s;
cursor: pointer;
}
.active, .example__title:hover {
background-color: #9e018f;
}
.example__content {
padding: 25px;
background-color: #fcfcfc;
display: none;
justify-content: center;
flex-wrap: wrap;
flex-direction: row;
overflow-x: auto;
}
.code {
background-color: #eeeff0;
padding: 0 1.5em;
flex: 1;
}
.interaction {
flex: 1;
padding: 2em;
}
.pre {
flex: 1;
padding: 25px;
}
.result {
color: #9e018f;
}
.result__title {
color: black;
}
.form {
width: 25em;
padding: 1.5em;
margin: 0 auto;
margin-bottom: 2em;
}
.form__input {
width:90%;
margin: 0 auto;
}
.form__resultheading, .form__resultbox {
margin: 0 auto;
width: 25em;
}
.form__resultbox {
list-style-type: none;
}
/* Hack needed to remove border in prettyprint container */
div pre.prettyprint {
border: none;
}