-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
150 lines (134 loc) · 2.79 KB
/
style.css
File metadata and controls
150 lines (134 loc) · 2.79 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
body{
background-color:purple;
}
h1{
text-decoration:underline;
text-shadow:2px 2px #4022e2;
}
span{
color:gold;
text-decoration:bold ;
}
aside{
color:white;
}
main{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif ;
}
div{
float:left;
}
#time{
float:right;
color:red;
font-size:40px;
text-decoration:underline black;
text-shadow:2px 2px black;
}
#title{
text-align: center;
font-size:40px;
text-decoration:underline;
text-shadow:2px 2px #4022e2;
}
#question{
text-align: center;
/* display: inline-block; */
font-size:22px;
color:goldenrod;
}
form{
text-align:center;
text-shadow:2px 2px purple;
}
label{
font-size:24px;
}
#G_Over{
text-align:center;
background-color:gold;
font-size: 80px;
border: 10px solid black;
}
#fPoints{
font-size:50px;
background-color:gold;
color:purple;
font-weight: bold;
text-decoration: underline overline red;
border-top: 10px solid black;
border-bottom: 10px solid black;
padding:10px;
}
#lose{
background-color:darkred;
color:yellow;
float:left;
font-size:40px;
}
#save{
padding-top:80px;
border:solid black;
background-color:purple;
text-align: center;
font-weight: bolder;
}
h3{
color:goldenrod;
font-weight: bolder;
text-decoration: underline;
}
footer{
float:none;
}
#outer_footer{
position:sticky;
bottom:0;
text-align:right;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
border-style:solid;
border-width:2px;
border-color: rgb(23, 2, 37);
padding:2px 2px 0px 2px;
color:black;
/* added opacity to background-color style */
background-color:rgb(156, 7, 156);
float:none;
}
.footerRow {
margin-right:0px;
float:none;
}
#texting, #image{
color:black;
/*text-align:center; */
/* background-color:rgb(130, 132, 175);*/
/* background: linear-gradient(45deg,black,indigo, #053ea8, #7a00ff); */
background: linear-gradient(90deg,rgb(170, 153, 2),rgb(250, 192, 2),rgb(241, 245, 2));
background-clip:border-box;
font-weight: normal;
border-right: 3px solid black;
border-left: 3px solid black;
float:none;
}
#texting {
border-top: 2px solid black;
float:none;
}
#image {
border-bottom: 2px solid black;
font-size: small;
float:none;
}
#outer_footer:hover #texting{
color:gold;
/* background:indigo; */
background: linear-gradient(90deg,rgb(65, 7, 107),rgb(112, 16, 180),rgb(171, 71, 243));
float:none;
}
#outer_footer:hover #image{
color:gold;
/* background:indigo; */
background: linear-gradient(90deg,rgb(65, 7, 107),rgb(112, 16, 180),rgb(171, 71, 243));
float:none;
}