-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (94 loc) · 1.49 KB
/
style.css
File metadata and controls
112 lines (94 loc) · 1.49 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
108
109
110
111
112
@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: hsl(204, 43%, 93%);
display: flex;
align-items: center;
justify-content: center;
font-family: 'Karla', sans-serif;
padding: 20px;
margin: 0;
min-height: 100vh;
}
main {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 5px 10px 10px rgba(0, 0, 0, 0.05);
max-width: 800px;
margin: auto;
overflow: hidden;
width: 800px;
}
section {
padding: 35px;
}
.greyish-blue {
background-color: hsl(179, 47%, 52%);
color: #fff;
}
.cyan {
background-color: hsl(179, 62%, 43%);
color: #fff;
}
.row {
display: flex;
}
.row > section {
flex: 1;
}
h1 {
color: hsl(179, 62%, 43%);
font-size: 34px;
padding: 5px;
}
.yellow-text {
color: hsl(71, 73%, 54%);
}
p {
font-size: 18px;
}
p.light-black {
color: #999;
margin: 7px;
}
p.faded {
color: hsl(179, 43%, 75%);
display: flex;
align-items: center;
}
p.faded span {
color: #fff;
font-size: 50px;
margin-right: 10px;
}
button {
background-color: hsl(71, 73%, 54%);
border-radius: 5px;
border: none;
box-shadow: 0 5px 10px 10px rgba(0, 0, 0, 0.05);
color: #fff;
font-family: 'Karla', sans-serif;
font-size: 18px;
font-weight: 700;
padding: 20px 0;
margin-top: 15px;
width: 100%;
cursor: pointer;
}
ul {
list-style-type: none;
padding: 0;
opacity: 0.7;
}
ul li {
line-height: 28px;
}
@media screen and (max-width: 600px) {
.row {
flex-direction: column;
}
}