-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathwebModules.css
More file actions
39 lines (34 loc) · 866 Bytes
/
webModules.css
File metadata and controls
39 lines (34 loc) · 866 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
.global.main .wm-caixaDeCodigo code {
/*border-radius: 10px;*/
border-radius: 0;
/*box-shadow: 0 0 5px #000, inset -2px -2px 0 rgba(0,0,0,.3), inset 2px 2px 0 rgba(255,255,255,.1);*/
box-shadow: none;
line-height: 20px;
padding: 1em .5em 1em 3.5em;
position: relative;
transition: box-shadow .25s;
}
.global.main .wm-caixaDeCodigo code:hover {
/*box-shadow: 0 0 10px #000, inset -2px -2px 0 rgba(0,0,0,.3), inset 2px 2px 0 rgba(255,255,255,.1);*/
box-shadow: none;
transition: box-shadow .5s;
}
.global.main .wm-caixaDeCodigo code:before {
background-color: rgba(0, 0, 0, .1);
content: '';
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 3em;
}
.wm-jumbotron {
background-color: rgba(0, 0, 0, .1);
max-height: 100vh;
overflow-y: hidden;
width: 100%;
}
.wm-jumbotron img {
display: block;
width: 100%;
}