-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (55 loc) · 1.07 KB
/
style.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
body {
background-color: #050505;
font-family: 'Lucida Sans Unicode' ,'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', Geneva, Verdana, sans-serif
}
.container {
display: flex;
flex-direction: column;
height: 100vh;
align-items: center;
justify-content: center;
text-align: center;
border: 15px solid;
background-color: #f3f3f3;
border-color: #050505;
border-radius: 55px;
}
.img {
height: 170px;
width: 170px;
}
.won {
color: green !important;
}
.lost {
color: red !important;
}
.btn:active {
background-color: transparent;
box-shadow: 0 10px transparent;
transform: translateY(9px);
}
@media (max-width: 479px) {
.container {
display: flex;
flex-direction: column;
height: 100vh;
align-items: center;
justify-content: center;
text-align: center;
border: 19px solid;
background-color: #f3f3f3;
border-color: #050505;
border-radius: 55px;
}
h1.display-1{
font-size:50px !important;
}
h1.display-3{
font-size: 30px !important;
}
.img{
height: 140px;
width: 140px;
}
}