generated from OtacilioMaia/melhor-workshop-em-linha-reta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
67 lines (57 loc) · 971 Bytes
/
styles.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
body {
flex: 1;
display: flex;
background-color: #f8f8ff;
color: #111111;
flex-direction: column;
}
.half-screen-container {
flex: 1;
display: flex;
height: 49vh;
overflow-x: auto;
}
.biggest-straight-line {
width: 100%;
margin-left: -4px;
border-radius: 8px;
border-top: 16px #333e41 solid;
}
.biggest-straight-line-container {
align-items: center;
display: flex;
flex: 1;
}
.brennand-snake {
position: absolute;
z-index: 1;
height: 56px;
width: 8px;
border-bottom-left-radius: 8px;
border-top-left-radius: 8px;
background-color: #333e41;
}
.brennand-bottom {
left: 80px;
}
.brennand-top {
right: 100px;
}
.brennand-base {
z-index: 1;
height: 44px;
width: 24px;
background-color: #80604d;
}
.card {
margin: 48px 16px;
width: 20vw;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.8);
transition: 0.3s;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.container {
padding: 2px 16px;
}