-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (92 loc) · 2.31 KB
/
Copy pathstyle.css
File metadata and controls
111 lines (92 loc) · 2.31 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
/* CSS files add styling rules to your content*/
body {
font-family: helvetica, arial, sans-serif;
margin: 2em;
background: linear-gradient(90deg, #093028 0%, #237A57 100%);
color: white;
text-align: center;
}
h1 {
font-family: verdana, arial, sans-serif;
background: #a8ff78;
background: -webkit-linear-gradient(90deg, #a8ff78 0%, #78ffd6 100%);
background: -moz-linear-gradient(90deg, #a8ff78 0%, #78ffd6 100%);
background: linear-gradient(90deg, #a8ff78 0%, #78ffd6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
button > p {
font-size: 50px;
font-weight: bold;
}
#startBtn, #stopBtn {
background: white;
}
/* Button Style */
button {
padding: 10px;
border: none;
border-radius:100px;
}
/* Game Button Size */
#gameButtonArea > button {
width:200px;
height:200px;
margin:5px;
user-select: none;
}
/* Hide A Button And Image */
.hidden {
display: none;
border-radius:100px
}
/* Button Color */
#button1 {
background: linear-gradient(90deg, #38ef7d 0%, #11998e 100%);
}
#button2 {
background: linear-gradient(90deg, #00B4DB 0%, #0083B0 100%);
}
#button3 {
background: linear-gradient(90deg, #ED213A 0%, #93291E 100%);
}
#button4 {
background: linear-gradient(90deg, #fffc00 0%, #FDC830 100%);
}
#button5 {
background: linear-gradient(90deg, #f5af19 0%, #f12711 100%);
}
#button6 {
background: linear-gradient(90deg, #8E2DE2 0%, #4A00E0 100%);
}
/* Button Color When Clicked*/
#button1:active, #button1.lit{
background: linear-gradient(270deg, #38ef7d 0%, #11998e 100%);
border: 5px solid #237A57;
color: #237A57;
}
#button2:active, #button2.lit {
background: linear-gradient(270deg, #00B4DB 0%, #0083B0 100%);
border: 5px solid #004e92;
color: #004e92;
}
#button3:active, #button3.lit {
background: linear-gradient(270deg, #ED213A 0%, #93291E 100%);
border: 5px solid #6f0000;
color: #6f0000;
}
#button4:active, #button4.lit {
background: linear-gradient(270deg, #fffc00 0%, #FDC830 100%);
border: 5px solid #BA8B02;
color: #BA8B02;
}
#button5:active, #button5.lit {
background: linear-gradient(270deg, #f5af19 0%, #f12711 100%);
border: 5px solid #b21f1f;
color: #b21f1f;
}
#button6:active, #button6.lit {
background: linear-gradient(270deg, #8E2DE2 0%, #4A00E0 100%);
border: 5px solid #2F0743;
color: #2F0743;
}