-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
56 lines (47 loc) · 916 Bytes
/
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
body {
background-color: antiquewhite;
}
h1 {
text-align: center;
color:rgb(43, 106, 127);
}
.container {
background-image: url('decision.jpg');
height:500px;
display: flex;
justify-content: center;
align-items : center;
flex-direction: column;
row-gap: 10px;
width:300px;
margin:0 auto;
background-size: cover;
padding:25px;
}
.container > div >input {
padding:10px;
}
.container > div >label {
display:inline-block;
width:80px;
color: cyan;
}
.decision-btn {
padding: 20px;
border-radius: 10px;
font-size: 25px;
outline: none;
border: none;
transition:background-color .25s linear;
background-color: rgba(43, 106, 127,0.7);
}
.decision-btn:hover {
cursor: pointer;
background-color: rgba(43, 106, 127,0.3);
}
.ans {
font-size: 31px;
background-color: rgba(43, 106, 127,0.8);
color:rgb(0,200,0);
text-align: center;
}