-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
105 lines (79 loc) · 1.53 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
104
105
body {
background-image: url("../concrete.jpg");
font-size: 19px;
color: blue;
min-width: 300px;
font-family: "Creepster", cursive;
}
h1 {
font-size: 45pt;
color:red;
text-shadow:
-1px -1px 0 black,
1px -1px 0 black,
-1px 1px 0 black,
1px 1px 0 black; /* Four shadows to create an outline */
margin-bottom: 80px;
margin-top: 80px;
text-align: center;
}
ul, li {
font-weight: bolder;
text-shadow:
-1px -1px 0 black,
1px -1px 0 black,
-1px 1px 0 black,
1px 1px 0 black;
font-size: larger;
text-align: left;
color:brown;
}
button {
font-family: "Creepster", cursive;
font-size: 12px;
background-color: yellowgreen;
box-shadow: black;
color: blue;
}
span {
display: inline-block;
padding: 0px 20px;
}
.card {
box-shadow: inset;
margin: 12px 12px -55px 12px;
flex: 1 1 100%; /* Cards take full width on small screens */
}
.wrapper {
margin: 0 auto;
width: 300px;
}
.empty {
opacity: 0;
}
.winMessage {
text-align: center;
}
.topPanel {
text-align: center;
padding: 10px;
}
button {
font-size: 16px;
}
span {
display: inline-block;
padding: 0 20px;
}
.wrapper {
margin: 0 auto;
width: 720px;
}
.topPanel {
text-align: center;
padding: 10px;
}
.card {
margin: 5px 5px -80px 5px;
flex: 1 1 200px; /* Flex-grow, flex-shrink, and flex-basis */
}