-
Notifications
You must be signed in to change notification settings - Fork 2
/
BSF.css
64 lines (59 loc) · 1011 Bytes
/
BSF.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
body{
font-size: 20px;
font-family: sans-serif;
color: #333;
display:flex;
flex-direction: column;
}
.box{
background-color: rgb(238, 229, 224);
margin:17px;
padding: 17px;
border-radius: 30px;
height:1100px;
}
.question{
font-weight: 600;
}
.answers {
margin-bottom: 20px;
}
.answers label{
display: block;
}
#submit{
font-family: sans-serif;
font-size: 20px;
background-color: #279;
color: #fff;
border: 0px;
border-radius: 20px;
cursor: pointer;
padding: 10px 20px;
margin-bottom: 20px;
}
#submit:hover{
background-color: #38a;
transform: scale(1.05);
}
h1{
color: black;
background-color: rgb(247, 247, 247);
padding:25px;
margin:5px;
border-radius: 20px;
}
.result{
font-family: sans-serif;
font-size: 20px;
background-color: #279;
color: #fff;
border: 0px;
border-radius: 20px;
padding:7px 15px;
cursor: pointer;
margin-top:18px;
margin-left: 12px;
margin-bottom: 20px;
text-decoration: none;
}