-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntelligence.css
More file actions
79 lines (56 loc) · 1.23 KB
/
Copy pathIntelligence.css
File metadata and controls
79 lines (56 loc) · 1.23 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
/* Written by: Cory Joseph
*
* This file contains all of the styling (done in CSS)
* for my intelligence game website.
*
* Photography by: James Martin @ https://www.instagram.com/james.internet
*/
html {
background: url(chicoPic.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.inputbox {
width: 80px;
}
.Score {
font-family: Tahoma, Verdana, Segoe, sans-serif;
font-weight: bold;
text-align: center;
margin: 50px 0 50px 0;
line-height: 175%;
}
#wrapper {
width: 750px;
margin: 50px auto;
padding: 20px;
background: white;
-moz-box-shadow: 10px 10px 20px black;
-webkit-box-shadow: 10px 10px 20px black;
box-shadow: 10px 10px 20px black;
opacity: 0.8;
}
p {
font-family: Tahoma, Verdana, Segoe, sans-serif;
font-weight: bold;
text-align: center;
margin: 50px 0 50px 0;
line-height: 175%;
}
button {
background: #333333;
border: none;
color: white;
padding: 10px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
button:hover {
-moz-box-shadow: 4px 4px 20px black;
-webkit-box-shadow: 4px 4px 20px black;
box-shadow: 4px 4px 20px black;
}