-
Notifications
You must be signed in to change notification settings - Fork 1
/
word-radar.css
56 lines (50 loc) · 943 Bytes
/
word-radar.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
.section-word {
display: grid;
grid-template-rows: max-content 1fr;
}
.hotel-nav {
display: grid;
grid-template-columns: 90% 10%;
background-color: #D9D9D9;
}
.hotel-heading {
background-color: #34495e;
margin: 15px;
padding: 1rem;
text-transform: uppercase;
color: white;
text-align: center;
}
.hotel-selection {
display: flex;
align-items: stretch;
flex-wrap: wrap;
}
.hotel-charts {
display: grid;
grid-template-columns: 1fr 1fr;
}
.word-cloud {
background-color: white
}
.radar-chart {
background-color: white
}
.btn {
display: inline-block;
border: none;
padding: 1rem 2rem;
margin: 5px;
width: 14rem;
min-height: 3.5rem;
text-decoration: none;
border: 0;
font-family: inherit;
font-size: .85rem;
line-height: 1;
cursor: pointer;
text-align: center;
transition: background 250ms ease-in-out, transform 150ms ease;
-webkit-appearance: none;
-moz-appearance: none;
}