-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
111 lines (94 loc) · 1.62 KB
/
index.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
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
@import url('https://fonts.googleapis.com/css?family=Poppins');
/* General */
body {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
margin-top: 25vh;
text-align: center;
}
h1 {
font-size: 120px;
}
.cards {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: baseline;
margin-bottom: 20px;
}
/* Social */
a {
text-decoration: none;
color: #303030;
}
.social {
text-align: center;
font-size: 50px;
margin-top: 50px;
}
.fa:hover {
opacity: 0.7;
}
/* Card */
.card {
background: #fff;
border-radius: 5px;
overflow: hidden;
margin: 10px;
flex: calc(25% - 20px);
max-width: calc(25% - 20px);
box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
transition: all 0.3s ease-out;
text-decoration: none;
border: 1px solid rgba(0, 0, 0, 0.11);
}
.card:first-child {
margin-left: 0;
}
.card:last-child {
margin-right: 0;
}
.item-location .card-main {
padding: 9.5px;
}
.item-location .main-description {
font-size: 23px;
}
.item-location .main-description span {
display: block;
}
.card-header {
text-align: center;
font-size: 18px;
border-bottom: 1px solid #424242;
background-color: #212121;
color: white;
padding: 5px 10px;
position: relative;
}
.deprecated-link {
position: absolute;
top: 6px;
right: 12px;
color: white;
font-size: 10px;
text-decoration: none;
}
.card-main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 15px 0;
}
.main-description {
font-size: 28px;
text-align: center;
min-height: 35px;
}
.muted {
font-size: 0.65em;
color: #ccc;
}