-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
96 lines (64 loc) · 1.24 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: coral;
}
:root {
--grid-cols: 1;
--grid-rows: 1;
}
#container-buttons {
display: flex;
justify-content: space-around;
align-items: center;
background-color: #ff0000;
}
h1 {
font-family: 'Gloria Hallelujah', cursive;
font-size: 3rem;
}
button{
font-family: 'Gloria Hallelujah', cursive;
font-size: 1rem;
padding: .5rem;
border-radius: .5rem;
}
#container-color {
display: flex;
justify-content: center;
align-items: center;
margin: 1rem 0;
}
h2 {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 1.8rem;
margin-right: 1rem;
}
input {
margin-right: 1rem;
}
p {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 1.5rem;
}
#container {
display: grid;
grid-template-rows: repeat(var(--grid-rows), 1fr);
grid-template-columns: repeat(var(--grid-cols), 1fr);
margin: auto;
width: 70vw;
height: 80vh;
border: 20px solid red;
border-radius: 1.5rem;
background-color: #ffffff;
}
.grid-item {
max-width: 100%;
max-height: 100%;
}
.grid-lines {
border: 1px solid black;
}