-
Notifications
You must be signed in to change notification settings - Fork 0
/
debatestyle.css
55 lines (49 loc) · 965 Bytes
/
debatestyle.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
body {
font-family: 'Lato';
font-size: 22;
background-image: url('debate.jpg');
height: 100vh;
background-size: cover;
}
h1 {
text-align: center;
color: red;
}
.main-container {
background-color: white;
box-shadow: -3px 15px 31px -4px rgba(133,128,133,1);
position: absolute;
top: 20%;
left: 20%;
padding: 20px;
border-radius: 5px;
width: 800px;
}
.button-container-1 {
display: flex;
justify-content: space-evenly;
margin: 10px;
}
button {
border-radius: 5px;
background-color: blue;
color: white;
padding: 15px;
cursor: pointer;
font-size: 18px;
}
.btn-3 {
border-radius: 5px;
background-color: red;
color: white;
padding: 15px;
cursor: pointer;
margin: auto;
}
.button-container-2 {
display: flex;
justify-content: space-around;
}
.final-result {
text-align: center;
}