-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
125 lines (122 loc) · 2.03 KB
/
index.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
body {
display: flex;
flex-direction: column;
align-items: center;
flex-wrap: wrap;
color: blue;
background-color: white;
font-family: 'JetBrains Mono';
}
.header {
position: fixed;
top: 0;
left: 0;
z-index: 100%;
display: flex;
justify-content: center;
align-items: center;
border: solid 5px black;
width: 100%;
height: 10vh;
box-sizing: border-box;
background-color: orange;
padding: 0;
}
.heading {
font-weight: 600;
font-size: 220%;
}
.Incomplete {
/* margin-top: 2rem; */
display: flex;
flex-wrap: wrap;
align-items: center;
column-gap: 1rem;
}
.Incomplete-heading {
margin-top: 2rem;
}
.color-instructions {
margin: 1rem;
width: 80%;
height: 1rem;
display: flex;
justify-content: space-around;
margin-bottom: 2rem;
margin-top: 5rem;
}
.instructions-JS,
.instructions-React {
font-weight: bold;
display: flex;
column-gap: 1rem;
}
.JS-instruction-button {
width: 1rem;
height: 1rem;
background-color: yellow;
}
.React-instruction-button {
width: 1rem;
height: 1rem;
background-color: #61dbfb;
}
.grids {
width: 100%;
height: 100%;
display: flex;
row-gap: 2rem;
column-gap: 1rem;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
.grid {
width: 15rem;
height: 15rem;
border: 5px solid black;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 1rem;
/* font-size: x-small; */
}
.JS {
background-color: yellow;
}
.React {
background-color: #61dbfb;
}
.buttons a button {
padding: 0.5rem;
border-radius: 5px;
transition: all 200ms ease-in-out;
cursor: pointer;
margin-bottom: 0.5rem;
}
.buttons a button:hover {
transform: scale(1.05);
box-shadow: black 5px 5px;
border: 3px solid black;
}
.weather-image,
.search-image,
.space-image,
.travel-landing-image,
.password-image,
.currency-image {
width: 40%;
object-fit: cover;
}
.chess-image {
width: 30%;
object-fit: cover;
}
#snake-svg {
width: 40%;
}
.ending {
margin-top: 1rem;
margin-left: 1rem;
}