-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (52 loc) · 941 Bytes
/
style.css
File metadata and controls
61 lines (52 loc) · 941 Bytes
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
* {
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
body.dark {
background-color: #121212;
color: #ffffff;
}
body.dark .card {
background: #1e1e1e;
border: 0px;
}
button#mode-toggle {
margin-bottom: 5px;
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button#mode-toggle:hover {
background-color: #0056b3;
}
.card {
width: 250px;
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
background-color: #ececec;
}
.img {
text-align: center;
}
.img img {
max-width: 100%;
height: auto;
border-radius: 50%;
}
p {
margin-top: 15px;
font-size: 14px;
line-height: 1.5;
}