forked from Haliboss/Clipboard-Landing-Web-Page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
139 lines (113 loc) · 2.12 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;600&family=Poppins:wght@200;300;700&display=swap');
* {
box-sizing: border-box;
}
body {
color:hsl(210, 10%, 33%) ;
font-family: "Bai Jamjuree", sans-serif;
text-align: center;
margin: 0;
}
header {
background-image: url(./images/bg-header-desktop.png);
background-repeat: no-repeat;
background-size: cover;
padding: 80px 0 20px;
}
img {
max-width: 100%;
}
p {
color: hsl(201, 11%, 66%);
line-height: 1,7;
}
section {
padding: 30px 0;
}
.container {
max-width: 100%;
margin: 30px auto;
width: 1200px;
padding: 0 20px;
}
.container-small {
width: 600px;
}
.download {
margin: 100px auto;
}
.flex {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
.flex > * {
flex: 1;
padding: 10px;
}
.btn {
border: none;
padding: 15px 35px;
border-radius: 50px;
color: #FFF;
font-family: "Bai Jamjuree", sans-serif;
font-weight: 600;
margin: 5px;
font-size: 15px 5px;
cursor: pointer;
}
.btn-primary {
background-color: hsl(171, 66%, 44%);
box-shadow: 0 5px hsl(171, 66%, 31%);
}
.btn-secondary {
background-color: hsl(233, 100%, 69%);
box-shadow: 0 5px hsl(233, 45%, 48%)
}
footer {
background-color: hsl(200, 7%, 84%);
}
footer img {
width: 60px;
}
footer ul {
display: flex;
padding: 0;
list-style-type: none;
flex-wrap: wrap;
}
footer ul a {
color: hsl(210, 10%, 33%);
text-decoration: none;
}
footer .links {
flex: 3;
}
footer .links li {
margin-right: 40px;
padding: 10px;
}
footer .social li {
margin-right: 0 5px;
}
footer .social a {
font-size: 24px;
margin-right: 10px;
}
@media (max-width: 768px) {
.flex {
flex-direction: column;
}
footer .links li {
padding: 10px;
margin-right: 0;
}
footer .links {
flex-direction: column;
}
}
/* - Strong Cyan: hsl(171, 66%, 44%)
- Light Blue: hsl(233, 100%, 69%)
- Dark Grayish Blue: hsl(210, 10%, 33%)
- Grayish Blue: hsl(201, 11%, 66%) */