-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOptions.css
82 lines (74 loc) · 1.49 KB
/
Options.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
/* styles.css */
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f4f7;
margin: 0;
font-family: Arial, sans-serif;
}
.card-container {
display: flex;
gap: 20px;
}
.card {
background: linear-gradient(135deg, #e0f7fa, #80deea);
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
width: 300px;
height: 400px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px;
}
.bitcoin-icon,
.news-icon,
.home-icon {
width: 100px;
height: 100px;
background: radial-gradient(circle, rgba(0, 150, 136, 1) 0%, rgba(38, 166, 154, 1) 100%);
border-radius: 50%;
position: relative;
margin-bottom: 20px;
}
.bitcoin-icon::before {
content: '₿';
font-size: 50px;
color: white;
position: absolute;
top: 25%;
left: 25%;
}
.news-icon::before {
content: '📰';
font-size: 50px;
color: white;
position: absolute;
top: 25%;
left: 25%;
}
.home-icon::before {
content: '🏠';
font-size: 50px;
color: white;
position: absolute;
top: 25%;
left: 25%;
}
button {
background-color: #26a69a;
color: white;
border: none;
border-radius: 25px;
padding: 10px 20px;
font-size: 18px;
cursor: pointer;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease;
}
button:hover {
background-color: #1e887f;
}