-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
133 lines (120 loc) · 2.27 KB
/
style.css
File metadata and controls
133 lines (120 loc) · 2.27 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
body {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
overflow: hidden;
color: darkcyan;
}
#titlu {
font-size: 50px;
font-family: Segoe UI;
text-align: center;
}
.card {
cursor: pointer;
height: 120px;
width: 90px;
text-align: center;
padding-top: 20px;
font-size: 40px;
color: darkCyan;
text-shadow:0 0 2px darkCyan;
box-shadow: 2px 2px 5px black;
display: none;
border-radius: 5px;
border-style: solid;
border-width: 2px;
border-color: cyan darkcyan;
}
#clicks {
color: gray;
font-size: 20px;
}
#copyright {
position: absolute;
bottom: -30px;
right: 10px;
padding-bottom:10px;
padding-left: 2px;
color: white;
font-size:15px;
background-color: gray;
width: 150px;
-transition: bottom 0.5s;
-webkit-transition: bottom 0.5s;
-moz-transition: bottom 0.5s;
}
#copyright:hover {
bottom: 0px;
}
#query {
display: none;
width: 400px;
height: 200px;
padding-top: 40px;
text-align: center;
border-radius: 5px;
border-style: solid;
border-width: 2px;
border-color: cyan green;
background-color: lightcyan;
font-size: 20px;
}
#send {
font-size: 18px;
width: 100px;
text-align: center;
border-radius: 5px;
border-style: solid;
border-width: 2px;
border-color: cyan green;
background-color: lightcyan;
cursor: pointer;
-transition: background-color 1s;
-webkit-transition: background-color 1s;
-moz-transition: background-color 1s;
}
#send:hover {
background-color: cyan;
}
#error {
color: red;
}
#score {
position: absolute;
right: 0px;
width : 100px;
height : 30px;
padding-top: 5px;
padding-left: 15px;
background-color: #f0f0f0;
color: darkcyan;
border-radius: 5px 0px 0px 5px;
-transition: width 0.5s;
-webkit-transition: width 0.5s;
-moz-transition: width 0.5s;
}
#score:hover {
width: 150px;
}
#gamenr {
position: absolute;
top: 100px;
right: 0px;
width : 100px;
height : 30px;
padding-top: 5px;
padding-left: 15px;
background-color: #f0f0f0;
color: darkcyan;
border-radius: 5px 0px 0px 5px;
-transition: width 0.5s;
-webkit-transition: width 0.5s;
-moz-transition: width 0.5s;
}
#gamenr:hover {
width: 150px;
}