-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (94 loc) · 1.41 KB
/
style.css
File metadata and controls
99 lines (94 loc) · 1.41 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
@import url('https://fonts.googleapis.com/css2?family=Oswald&family=Passion+One&display=swap');
*
{
box-sizing: border-box;
}
body
{
margin: 0;
}
main
{
max-width: 1140px;
width: 100%;
padding: 0 15px;
margin-right: auto;
margin-left: auto;
}
h1
{
font-family: 'Passion One', cursive;
font-size: 3rem;
font-weight: 100;
margin-bottom: 20px;
}
#app
{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
column-gap: 40px;
justify-content: space-around;
row-gap: 40px;
}
label, p, input
{
font-family: 'Oswald', sans-serif;
font-size: 1.2rem;
font-weight: 50;
margin-bottom: 10px;
}
#selector
{
margin-bottom: 20px;
}
.cell
{
height: 40px;
width: 40px;
background-color: #f3f3f3;
border-radius: 5px;
}
.container
{
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
column-gap: 10px;
row-gap: 10px;
}
.footer
{
margin-top: 20px;
display: flex;
justify-content: space-between;
}
.footer p
{
font-size: 1rem;
font-weight: 100;
}
@media screen and (max-width: 1224px)
{
#app
{
grid-template-columns: 1fr 1fr;
}
}
@media screen and (max-width: 767px)
{
#app
{
grid-template-columns: 1fr;
}
.container
{
column-gap: 5px;
}
.footer
{
flex-direction: column;
}
.footer p
{
margin-top: 0;
}
}