-
Notifications
You must be signed in to change notification settings - Fork 0
/
bl.css
78 lines (67 loc) · 1.42 KB
/
bl.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #980303;
}
.ask{
font-family: 'Comic Sans MS';
font-size: 17px;
font-weight: bold;
color: white;
text-align: center;
margin-top: 15px;
margin-left: 30px;
}
.gifcontainer{
display: flex;
justify-content: center;
align-items: center;
margin-top: 50px;
}
.buttons{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
margin-top: 20px;
margin-left: 20px;
}
#noButton{
position: absolute;
margin-left: 110px;
}
#yesButton{
position: absolute;
margin-right: 130px;
}
.btn{
background-color: #0cbc0c;
color: white;
padding: 20px 40px;
border-radius: 35px;
text-align: center;
display: inline-block;
font-size: 16px;
}
.box {
background-color: #100219;
height: 150px;
width: 300px;
border: 5px solid #000000;
border-radius: 16px;
margin: 40px auto; /* Center horizontally with auto margins, and add top and bottom margins */
}
.blink{
background-color: #930909;
}
.boxer {
background-color: #100219;
height: 70px;
width: 300px;
border: 5px solid #000000;
border-radius: 16px;
margin: 40px auto; /* Center horizontally with auto margins, and add top and bottom margins */
}