-
Notifications
You must be signed in to change notification settings - Fork 1
/
stylesheet.css
65 lines (54 loc) · 1016 Bytes
/
stylesheet.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
body{
font-family : 'Courgette', cursive;
background-color: blueviolet;
}
.container{
height :330px;
width : 1000px;
position : absolute;
top :50%;
bottom : 50%;
transform : translateX(40%) translateY(-50%);
background-color: lavender;
padding:20px;
border: 1px solid lavenderblush;
box-shadow: 0 0 8px 3px #fff;
align-content: center;
}
.title{
padding-top:20px;
text-align: center;
font-size: 36px;
text-transform: uppercase;
color:black;
}
.question{
padding : 32px;
text-align : left;
font-size: 25px;
color:black;
}
.option{
font-size: 22px;
color: black;
padding-left: 35px;
}
.next-btn{
border : none;
outline:none;
width:100px;
height : 35px;
border-radius : 20px;
cursor : pointer;
float : right;
margin : 60px;
}
.next-btn:hover{
color: white;
background:blueviolet;
}
.result{
height: 100px;
text-align: center;
font-size: 75px;
}