-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (98 loc) · 1.92 KB
/
style.css
File metadata and controls
115 lines (98 loc) · 1.92 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
body {
height: 450px;
background-image: url('https://media.giphy.com/media/OphJjMBC9AbEQ/giphy.gif');
background-size: 99% 240%;
}
#announce-game-won {
display: flex;
justify-content: center;
height: 50px;
font-size: 80px;
color: #338AB1
}
h1 {
display: flex;
align-items: flex-start;
}
outer {
display: flex;
justify-content: center;
align-items: flex-end;
width: 100%;
height: 350px;
margin-top: 250px;
}
section {
display: flex;
/*justify-content: center;*/
justify-content: space-around;
align-items: flex-end;
width: 75%;
height: 300px;
/* border: solid green; */
margin-bottom: 0px;
}
[data-stack] {
display: flex;
flex-direction: column-reverse;
align-items: center;
border-radius: 15px;
height: 200px;
width: 20px;
background-color: grey;
/* margin-right: 150px; */
border: 1px solid blue
}
[data-block] {
display: flex;
flex-direction: column;
align-items: flex-end;
border-radius: 7px;
height: 25px;
border: .5px solid white;
/* float: left; */
}
[data-block="25"] {
height: 25px;
width: 25px;
background-color: blue;
background-image: linear-gradient(blue, lightblue);
}
[data-block="50"] {
height: 25px;
width: 50px;
background-color: green;
background-image: linear-gradient(green, lightgreen);
}
[data-block="75"] {
height: 25px;
width: 75px;
background-color: red;
background-image: linear-gradient(red, pink);
}
[data-block="100"] {
height: 25px;
width: 100px;
background-color: yellow;
background-image: linear-gradient(yellow, lightyellow);
}
[data-block="125"] {
height: 25px;
width: 125px;
background-color: purple;
background-image: linear-gradient(purple, violet);
}
/* #announce-game-won {
display: flex;
font-size: 20px;
text-align: center;
height: 50px;
} */
@media screen and (min-width: 320px) and (max-width: 1100px) {
body {
width: 100%;
}
section {
width: 99%;
}
}