-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
127 lines (119 loc) · 2.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
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
@import url('https://fonts.googleapis.com/css2?family=Akaya+Kanadaka&display=swap');
*{
font-family: 'Akaya Kanadaka', cursive;
}
#instructions{
font-size: medium;
color: green;
background-color: red;
width: inherit;
height: min-content;
}
#lets_toss{
background-color: magenta;
height: 120px;
width: 320px;
font-size: large;
}
#lets_toss:hover{
background-color: green;
}
#start_play1:hover{
background-color: green;
}
#tossform{
font-size: 16;
text-align: center;
color: indianred;
background-color: lightgreen;
padding: 10px;
margin: 20px;
}
.forlargebuttons{
background-color: magenta;
height: 120px;
width: 320px;
font-size: large;
font-family: 'Akaya Kanadaka', cursive;
}
h1 {
text-align: center;
color: magenta;
}
.forbutton {
font-size: large;
background-color: red;
width: 200px;
height: 60px;
border-radius: 8px;
margin: 15px;
font-family: 'Akaya Kanadaka', cursive;
box-shadow: 0 4px 6px 0 rgba(247, 48, 48, 0.863), 0 4px 6px 0 rgba(247, 48, 48, 0.863);
}
#enternum{
font-size: 30px;
}
#start_play1:hover{
box-shadow: 0 8px 16px 0 rgba(240, 66, 211, 0.863), 0 6px 20px 0 rgba(240, 66, 211, 0.863);
}
#runinput1{
font-size: 30px;
width: 200px;
height: 50px;
text-align: center;
}
#even:hover{
transition: all 0.9s ;
padding: 0;
margin: 0;
opacity: 1;
transition: 0s;
background-color: rgb(10, 192, 10);
box-shadow: 0 12px 20px 0 rgba(98, 228, 104, 0.863), 0 12px 20px 0 rgba(98, 228, 104, 0.863);
}
#odd:hover{
transition: all 0.9s ;
padding: 0;
margin: 0;
opacity: 1;
transition: 0s;
background-color: rgb(10, 192, 10);
box-shadow: 0 12px 20px 0 rgba(98, 228, 104, 0.863), 0 12px 20px 0 rgba(98, 228, 104, 0.863);
}
#feedback1 {
text-align: center;
color: blue;
}
#tossinput {
text-align: center;
width: 400px;
}
#runinput1_button{
width: 200px;
height: 60px;
}
#runinput1_button:hover{
background-color: green;
}
.centered {
text-align: center;
font-size: large;
}
.standard_div{
text-align: center;
font-size: large;
background-color: red;
color: green;
padding: 5px;
border: 2px solid green;
}
#play_start_button{
text-align: center;
font-size: large;
background-color: red;
color: green;
font-family: 'Akaya Kanadaka', cursive;
}
#tossdiv{
text-align: center;
}