forked from awesome-yasin/supercalculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (65 loc) · 1.3 KB
/
style.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
* {
box-sizing: border-box;
}
html {
font-family: 'Lato', sans-serif;
font-size: 10px;
}
.container {
max-width: 980px;
margin: 0 auto;
}
.landing-section {
margin-bottom: 60px;
padding-bottom: 60px;
border-bottom: 1px solid #ddd;
}
.landing-section:before,
.landing-section:after {
content: "";
display: table;
clear: both;
}
.landing-section-header {
margin-bottom: 1em;
text-align: center;
font-weight: 500;
font-size: 3.8rem;
}
.landing-section-grid.mod-3 > * {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(110px, 2fr));
grid-gap: 32px;
grid-auto-flow: dense;
padding: 40px 0;
}
.icon-link {
display: block;
padding: 20px;
color: #000;
text-decoration: none;
}
.icon-link:hover {
background-color: #eee;
}
.icon-link-img {
float: left;
width: 80px;
height: auto;
padding-right: 20px;
}
.icon-link:hover .icon-link-img {
-webkit-filter: brightness(1.1);
filter: brightness(1.1);
}
.icon-link-text {
margin-left: 80px;
}
.icon-link-title {
margin: 0 0 0.5em;
font-size: 2rem;
}
.icon-link-summary {
color: #777;
font-size: 1.6rem;
}