-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (59 loc) · 1.19 KB
/
style.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
html,
body {
background-color: hsl(0, 0%, 8%);
color: hsl(0, 0%, 100%);
height: 100%;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
font-size: 15 px;
font-family: 'Figtree', Arial, sans-serif;
text-align: center;
}
.container {
background-color: hsl(0, 0%, 12%);
padding: 20px;
border-radius: 10px;
width: 300px;
}
#image {
border-radius: 100px;
width: 80px;
}
#name {
font-size: 20px;
margin-bottom: 8px;
font-weight: 400;
}
#country {
color: hsl(75, 94%, 57%);
font-size: 13px;
font-weight: bold;
margin-bottom: 25px;
}
#description {
margin-bottom: 12px;
font-size: 13px;
}
/* Button styles */
.buttons .btn {
display: block;
background-color: #444;
color: #fff;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
margin: 10px 0;
transition: background-color 0.3s ease, color 0.3s ease;
}
/* Hover and focus states */
.buttons .btn:hover,
.buttons .btn:focus {
background-color: #a4ff00;
color: #111;
}
/* Adding a subtle box-shadow for the focus state */
.buttons .btn:focus {
box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
}