-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgamescreen.css
More file actions
68 lines (56 loc) · 1.08 KB
/
gamescreen.css
File metadata and controls
68 lines (56 loc) · 1.08 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
html{
height:100%;
background: linear-gradient(160deg, #95ccc5, #2e5668);
}
body{
background-color: transparent;
}
.card {
background-color: #ffeaac;
font-family: 'Baloo', sans-serif;
box-shadow: 10px 10px 10px #2e5668;
color: #2e5668;
}
.modal-content {
background-color: #ffeaac;
font-family: 'Baloo', sans-serif;
color: #2e5668;
}
.modal-content button{
background-color: #2e5668;
font-family: 'Baloo', sans-serif;
color: #ffeaac ;
}
.form-group {
margin-bottom: 10px;
}
.modal-content .btn-success {
margin-top: 5px;
background-color: #2e5668;
color: #ffeaac;
}
.modal-content .btn-success:hover{
margin-top: 5px;
background-color: #ffeaac;
border-color: #2e5668;
color: #2e5668;
}
.modal-content .btn-danger {
background-color: #ff867c;
color: #2e5668;
border: none;
}
.modal-content .btn-danger:hover {
color: white;
border: none;
}
.modal-body li {
margin-bottom: 15px;
}
.form-control {
color: #2e5668;
}
.form-control:focus {
color: #2e5668;
border-color: white;
}