-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
102 lines (91 loc) · 1.74 KB
/
index.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
body {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background-image: url(blackjack.jpg);
background-size: cover;
font-weight: bold;
text-align: center;
border: 15px solid rgb(218, 165, 32, .54);
width: 300px;
margin-left: 500px;
margin-top: 125px;
}
h1 {
color: goldenrod;
font-size: 320%;
}
p {
color: white;
font-size: 125%;
}
label {
color: white;
font-size: large;
font-style: oblique;
}
#message-el {
font-style: oblique;
color: white;
font-size: 150%;
}
#start-btn {
padding: 10px;
border: none;
color: #016930;
font-size: larger;
font-weight: bold;
width: 175px;
background-color: goldenrod;
border-radius: 4px;
margin-bottom: 8px;
}
#newcard-btn {
padding: 10px;
border: none;
color: #016930;
font-size: larger;
font-weight: bold;
width: 175px;
background-color: goldenrod;
border-radius: 4px;
margin-bottom: 30px;
}
#input {
margin-bottom: 8px;
margin-top: 4px;
}
#username-el{
font-size: large;
}
#submit-btn {
padding: 10px;
border: none;
color: #016930;
font-size: larger;
font-weight: bold;
width: 175px;
background-color: goldenrod;
border-radius: 6px;
margin-bottom: 8px;
}
#reset-btn {
padding: 10px;
border: none;
color: goldenrod;
font-size: larger;
font-weight: bold;
width: 175px;
background-color: red;
border-radius: 6px;
margin-bottom: 8px;
}
#playagain-btn{
padding: 10px;
border: none;
color: #016930;
font-size: larger;
font-weight: bold;
width: 175px;
background-color: goldenrod;
border-radius: 6px;
margin-bottom: 8px;
}