-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyles.css
65 lines (62 loc) · 1.2 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;0,700;1,400&display=swap');
/* css reset */
*,
*::before,
*::after {
box-sizing: border-box;
}
/* variables colors */
:root {
--red: #fd7057;
--green: #0ada48;
--blue: #8376fa;
--grey: #f5f5f5;
--darkred: #811401;
--darkgreen: #005c10;
--darkblue: #0a015f;
--darkgrey: #242222;
}
/* variables - form inputs */
:root {
--input-border: #8b8a8b;
--input-focus-h: 245;
--input-focus-s: 100%;
--input-focus-l: 42%;
}
/* fonts */
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}
body {
font-family: Rubik, sans-serif;
}
.app {
padding: 0.2em 0.5em;
min-height: 100vh;
}
/* Breakpoints:
320px — 480px: Mobile
481px — 768px: iPads, Tablets
769px — 1024px: Small screens, laptops
1025px — 1200px: Desktops, large screens
1201px and more — Extra large screens, TV */
@media screen and (min-width: 481px) {
.app {
padding: 0.2em 2em;
}
}
@media screen and (min-width: 769px) {
.app {
padding: 0.2em 4em;
}
}
@media screen and (min-width: 1025px) {
.app {
padding: 0.2em 6.5em;
}
}
@media screen and (min-width: 1201px) {
.app {
padding: 0.2em 9em;
}
}