-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (95 loc) · 2.24 KB
/
style.css
File metadata and controls
107 lines (95 loc) · 2.24 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
body {
background-image: url(images/wood-medium-pattern.jpg);
background-position: top left;
margin: 0 auto;
text-align: center;
color: white;
font-family: 'Passion One', cursive; font-weight: 400;
}
#here {
color: gold;
font-size: 5em;
margin: 20px;
}
#win {
color: #7FFF00;
font-size: 5em;
margin: 20px;
}
#lose {
color: red;
font-size: 5em;
margin: 20px;
}
#header {
font-size: 3em;
margin: 20px;
}
button {
padding: 10px 15px;
font-size: 18px;
background-color: #5e5e5e;
color: white;
}
#computer_deck {
height: 250px;
width: 330px;
margin-left: auto;
margin-right: auto;
margin-top: 40px;
}
#user_deck{
height: 250px;
width: 330px;
margin-left: auto;
margin-right: auto;
}
#deck-img {
max-width: 150px;
float: left;
margin-left: auto;
margin-right: auto;
}
#computer-card-img, #user-card-img {
max-width: 140px;
float: right;
margin-left: auto;
margin-right: auto;
}
#user-name, #computer-name {
display: inline-block;
margin: 0 auto;
text-align: center;
padding-bottom: 15px;
font-size: 1em;
}
.btn-flip, .btn-playagain, .btn-start {
background: #3498db;
background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
background-image: -moz-linear-gradient(top, #3498db, #2980b9);
background-image: -ms-linear-gradient(top, #3498db, #2980b9);
background-image: -o-linear-gradient(top, #3498db, #2980b9);
background-image: linear-gradient(to bottom, #3498db, #2980b9);
-webkit-border-radius: 8;
-moz-border-radius: 8;
border-radius: 8px;
text-shadow: 1px 1px 0px #666666;
-webkit-box-shadow: 0px 1px 3px #666666;
-moz-box-shadow: 0px 1px 3px #666666;
box-shadow: 0px 1px 3px #666666;
color: #ffffff;
font-size: 2em;
padding: 10px 20px 10px 20px;
margin: 20px 10px 10px 10px;
text-decoration: none;
}
.btn-flip:hover, .btn-playagain:hover, .btn-start:hover {
background: #3cb0fd;
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
text-decoration: none;
cursor: pointer;
}