-
-
Notifications
You must be signed in to change notification settings - Fork 218
Expand file tree
/
Copy pathstyle.module.css
More file actions
125 lines (102 loc) · 1.68 KB
/
style.module.css
File metadata and controls
125 lines (102 loc) · 1.68 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
.container {
margin-top: 20px;
margin-bottom: 30px;
}
.codeBox,
.codeBoxFullscreen {
position: relative;
}
.code {
max-height: 60vh;
overflow: auto;
background-color: rgba(0, 0, 0, 0.03);
padding: 20px;
}
:global(.dark) .code {
background-color: rgba(0, 0, 0, 0.2);
}
.codeBoxFullscreen,
.codeBoxFullscreen .code {
height: 100%;
max-height: none;
}
.fab {
position: absolute !important;
right: 10px;
bottom: 10px;
}
.mobileMenu a {
text-decoration: none;
}
.mobileMenu svg {
margin-right: 7px;
}
.buttonsTop {
position: absolute;
top: 15px;
right: 15px;
display: flex;
justify-content: flex-end;
align-items: center;
}
.buttonsBottom {
position: absolute;
bottom: 15px;
right: 15px;
display: flex;
justify-content: flex-end;
}
.fullscreen {
margin: 0 10px !important;
}
.tryCode {
color: white !important;
margin-right: 10px !important;
}
.pre {
font-size: 13px;
margin: 0;
}
.implementations {
margin-top: 10px;
}
.implementation {
margin-right: -5px !important;
}
.card {
display: inline-block;
width: 48px;
border-radius: 50% !important;
}
.card:not(.current) {
background: rgba(255, 255, 255, 0) !important;
box-shadow: none !important;
}
.mobileImplementations {
width: 100%;
margin-top: 15px !important;
}
.item {
display: flex;
align-items: center;
}
:global(.MuiInputBase-input) .item {
margin-left: 5px;
}
:global(.MuiPopover-paper) .item :global(img) {
width: 0.8em;
height: 0.8em;
transform: translateY(-0.2em);
}
.item :global(p) {
margin-left: 10px !important;
}
.dialog {
max-width: 1200px;
margin: auto;
}
@media (max-width: 600px) {
.dialog {
margin-top: -8px !important;
}
}