-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (91 loc) · 1.87 KB
/
style.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
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
background-color: #898989;
padding: 25px;
font-family: sans-serif;
}
.wrapper {
min-height: 100vh;
display: -ms-grid;
display: grid;
-ms-grid-columns: (minmax(225px, 1fr))[auto-fill];
grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
gap: 25px;
}
.wrapper .box {
width: 85%;
height: 90%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: white;
text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
font-size: 1.35em;
text-align: center;
}
.wrapper .box p {
border-left: 5px outset #777;
border-top: 5px outset #777;
border-bottom: 5px inset #222;
border-right: 5px inset #222;
width: 100%;
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 10px;
cursor: pointer;
}
.wrapper .box.blue {
background-color: cornflowerblue;
}
.wrapper .box.blue:hover {
background-color: #4d85ea;
}
.wrapper .box.green {
background-color: green;
}
.wrapper .box.green:hover {
background-color: #006700;
}
.wrapper .box.orange {
background-color: orangered;
}
.wrapper .box.orange:hover {
background-color: #e63e00;
}
.wrapper .box.red {
background-color: crimson;
}
.wrapper .box.red:hover {
background-color: #c51236;
}
.wrapper .box.purple {
background-color: purple;
}
.wrapper .box.purple:hover {
background-color: #670067;
}
.wrapper .box .hidden {
display: none;
}