-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (85 loc) · 1.56 KB
/
style.css
File metadata and controls
107 lines (85 loc) · 1.56 KB
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
*, *::before, *::after { box-sizing: border-box; }
body {
font-family: 'Poppins', sans-serif;
margin: 0;
font-size: 15px;
background-color: hsl(0, 0%, 98%);
}
p {
margin-bottom: 2em;
}
.description {
text-align: center;
width: 35%;
margin: 1em auto;
}
.container {
display: flex;
max-width: 900px;
width: 100%;
margin: 0 auto 4em auto;
justify-content: space-between;
align-items: center;
}
img {
float: right;
}
.column {
width: 32%;
}
.double {
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.card {
background-color: white;
border-radius: 5px;
margin-top: 2em;
padding: 2em 3em 1.5em 2em;
box-shadow: -1px 4px 23px -1px rgba(138,135,138,0.53);
}
.supervisor {
border-top: 5px solid hsl(180, 62%, 55%);
}
.team {
border-top: 5px solid hsl(0, 12%, 42%);
}
.karma {
border-top: 5px solid hsl(34, 97%, 64%);
}
.calculator {
border-top: 5px solid hsl(212, 86%, 64%);
}
#top-page {
margin-top: 2.25em;
}
@media (max-width: 675px) {
.description {
width: 80%;
}
.container {
flex-direction: column;
}
.column {
width: 80%;
}
}
/**** TYPOGRAPHY *****/
h2,
h3 {
color: hsl(234, 12%, 34%);
}
p {
color: hsl(229, 6%, 66%);
}
h2 {
font-size: 2rem;
text-align: center;
font-weight: 200;
margin-bottom: 0;
}
.bold {
font-weight: 600;
margin-top: 0;
}