forked from boring12345/Memory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
122 lines (104 loc) · 1.8 KB
/
stylesheet.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*Draft stylesheet for Codecademy, Advanced JavaScript Coders, Game Month Memory Game*/
html {
background-color: #D2D2D2;
}
body {
width: 1000px;
position: absolute;
left: 50%;
margin-left: -500px;
}
#game_title_wrapper {
width: 1000px;
background-color: #151B1F;
height: 45px;
border-style: solid;
border-width: 2px;
border-radius: 10px;
}
#game_title {
text-align: center;
margin-top: 5px;
font-family: "Lobster","Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 25px;
color: #EEEEEE;
text-shadow: 2px 3px 3px #666;
}
#game_frame {
width: 993px;
height: 600px; /*550*/
margin-top: 3px;
border-style: ridge;
border-width: 6px;
border-radius: 10px;
}
#game_board_frame {
margin-top: 20px;
margin-right: 20px;
width: 750px;
height: 500px;
position: absolute;
left: 220px;
border-style: groove;
border-width: 3px;
border-radius: 10px;
padding: 5px;
}
div.card_frame {
width: 114px;
height: 114px;
display: inline;
margin-left: 3px;
}
div.card_frame img {
border: 2px solid #33CCCC;
border-radius: 100%;
}
div.card_frame a:hover img {
border: 2px solid #3333FF;
}
div.game_board_spacer {
height: 3px;
width: 100%;
}
#game_info_frame {
position: absolute;
width: 170px;
height: 430px;
margin-left: 10px;
margin-top: 10px;
padding: 5px;
}
div.player_frame, #addPlayer {
width: 160px;
height: 90px;
border-style: groove;
border-width: 3px;
border-radius: 10px;
visibility: visible;
margin-top: 10px;
padding: 3px;
}
#control_frame {
position: absolute;
width: 170px;
height: 60px;
top: 500px;
margin-left: 10px;
margin-top: 10px;
padding: 5px;
}
#control_frame button {
width: 80px;
height: 30px;
font-size: 16px;
font-family: Helvetica,Arial,sans-serif;
margin-top: 20px;
}
#clock div{
display:inline;
}
ul#sortable{
margin: 0;
padding-left: 0;
}