-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexhibitor.css
76 lines (63 loc) · 1.1 KB
/
exhibitor.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
.cards {
margin: 3rem;
display: grid;
}
.container {
max-width: 1100px;
margin: 0 auto;
overflow: auto;
}
.ehead{
white-space: nowrap;
}
.col{
margin:0 2rem;
display: flex;
justify-content: center;
align-items: center;
}
.counters {
background: #F5F5F5;
color: #000;
padding: 40px 20px;
border-top: 3px lightskyblue solid;
}
.container {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.counters .counter {
font-size: 45px;
margin: 10px 0;
}
.exhibitorCards:hover{
box-shadow: 5px 5px 10px rgba(0,0, 0, .2);
}
@media (max-width: 700px) {
.ehead{
white-space: normal;
text-align: center;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.child-container{
display: flex;
flex-direction: column;
align-items: center;
justify-self: center;
}
.exhibitorCards:hover{
box-shadow: 5px 5px 10px rgba(0,0, 0, .2);
}
/* .counters .container > div:nth-of-type(1),
.counters .container > div:nth-of-type(2) {
border-bottom: 1px lightskyblue solid;
padding-bottom: 20px;
} */
}