-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.css
90 lines (72 loc) · 1.07 KB
/
1.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
79
80
81
82
83
84
* {
padding: 0;
margin: 0;
font-family: 'Open Sans', sans-serif;
}
.container {
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #fde1e1;
}
.card {
width: 800px;
height: 500px;
position: relative;
background: #fff;
display: flex;
flex-direction: column;
}
.card.active {
display: none;
}
.content-top {
width: 100%;
height: 150px;
background: #f95af9;
display: flex;
justify-content: center;
align-items: center;
user-select: none;
}
.content-top h1 {
font-size: 50px;
}
.content-bottom {
flex: 1;
padding: 20px 70px;
position: relative;
}
.content-bottom p {
font-size: 18px;
padding: 10px 0;
}
.content-bottom .answer {
padding: 10px 0;
}
#btn {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 70px;
background: purple;
text-align: center;
font-size: 25px;
font-weight: 600;
color: white;
line-height: 65px;
cursor: pointer;
user-select: none;
}
#end {
font-size: 30px;
padding: 40px;
text-align: center;
display: none;
}
#end.active {
display: block;
}