-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
90 lines (78 loc) · 1.43 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
body {
background-color: #71ADBC;
font-family: 'Fascinate Inline', cursive;
font-size: 3rem;
text-align: center;
}
h1 {
margin: 0 0 45px;
}
img {
border-radius: 25px;
height: 260px;
width: 165px;
}
p {
color: #1C1C1C;
text-align: left;
margin: 5px 0 10px;
}
.shark {
height: 110px;
width: 300px;
}
/****************** BUTTONS *******************/
button {
background-color: #F2F2F2;
border-radius: 10px;
font-family: 'Source Code Pro', monospace;
line-height: 1.65;
outline:none;
}
button:hover {
background-color: #CCCCCC;
}
.higher-card, .lower-card {
display: none;
}
.human-wins, .computer-wins {
background-color: #F2F2F2;
background-image: url("images/confetti.png");
background-size: 600px 400px;
background-repeat: no-repeat;
font-family: 'Source Code Pro', monospace;
font-size: 2rem;
display: none;
position: fixed;
left: 29%;
/* outline: .7rem dotted #F3C015; */
height: 400px;
width: 600px;
z-index: 1;
}
span {
font-family: 'Source Code Pro', monospace;
font-size: 1rem;
display: none;
}
/****************** GAME BOARD LAYOUT *******************/
.card-wrapper {
background-color: #107A42;
padding: 10px;
margin: auto;
margin-bottom: 50px;
outline: .7rem dotted #DFE6E7;
width:85%;
}
.row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width:100%;
}
.column {
display: flex;
flex-direction: column;
flex-basis: 100%;
flex: 1;
}