forked from rocketacademy/basics-blackjack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
97 lines (85 loc) · 1.49 KB
/
styles.css
File metadata and controls
97 lines (85 loc) · 1.49 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
* {
box-sizing: border-box;
}
body {
font-weight: bolder;
font-family: "Poiret One", cursive;
margin-left: 30px;
margin-right: 30px;
background-color: white;
color: white; /* sets the font color */
background-image: url(""); /* The image used */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Do not repeat the image */
background-size: cover; /* Resize the background image to cover the entire container */
}
#output-div img {
display: block;
max-width: 100%;
max-height: 200px;
margin: 0 auto;
}
.header {
margin: 0;
text-align: center;
font-size: 1.1rem;
margin-bottom: 1.8rem;
}
#container {
font-size: 18px;
margin: 0px auto;
max-width: 800px;
padding: 0px 31px;
color: gray;
}
input {
text-align: center;
font-size: 18px;
line-height: 33px;
margin: 0 0 23px 0;
padding: 0 9px;
width: 100%;
}
button {
font-size: 18px;
line-height: 33px;
margin: 0 0 23px 0;
padding: 0 6px;
}
#output-div {
text-align: center;
background-color: white;
margin: 0px auto;
padding: 15px;
width: 100%;
}
/* increase header font size on wider screens */
@media screen and (min-width: 600px) {
.header {
font-size: 2rem;
}
}
#background-video {
position: fixed;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
z-index: -1;
}
.buttons,
p {
text-align: center;
}
.slider {
margin: 0;
}
a {
text-decoration: none;
}
audio {
display: block;
margin: auto;
height: 50px;
width: 200px;
}