-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
66 lines (60 loc) · 1.2 KB
/
Copy pathindex.css
File metadata and controls
66 lines (60 loc) · 1.2 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #657cc2, #3f6eb5, #1748cf);
font-family: Arial, sans-serif;
padding: 15px;
}
.card {
background: rgb(224, 206, 163);
width: 100%;
max-width: 600px;
height: inherit;
padding: 30px 20px;
border-radius: 30px;
box-shadow: 0 10px 30px rgba(227, 220, 220, 0.224);
text-align: center;
border: 3px solid #eb5409;
}
h1 {
color: #1a1f9b;
font-size: 2.2rem;
margin-bottom: 15px;
}
.message {
font-size: 1.5rem;
color: #5a3a2c;
margin: 15px 0 20px;
font-style: italic;
text-align: center;
}
.surprise {
background: #c7b9ff;
border: none;
padding: 15px 25px;
border-radius: 40px;
font-size: 1.3rem;
font-weight: bold;
color: #3d2b5a;
cursor: pointer;
width: 100%;
margin: 15px 0 20px;
border-bottom: 5px solid #9f8ad4;
transition: 0.1s;
}
.surprise a {
color: #3d2b5a;
text-decoration: none;
}
.surprise:active {
border-bottom: 2px solid #3bb7cd;
background: #16c1c6;
transform: translateY(3px);
}