-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (72 loc) · 1.21 KB
/
style.css
File metadata and controls
86 lines (72 loc) · 1.21 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
body {
background-color: #222831;
font-family: 'Google Sans', 'Roboto', sans-serif;
font-size: 18px;
line-height: 1.6;
color: #DFD0B8;
}
h1, h2, h3 {
font-family: 'Google Sans', 'Montserrat', sans-serif;
color: #DFD0B8;
}
a {
text-decoration: none;
color: #948979;
}
a:hover {
color: #DFD0B8;
}
img {
border-radius: 50%;
}
ul {
list-style: none;
padding-left: 0;
}
div {
width: auto;
}
.container {
max-width: 700px;
margin: 40px auto;
padding: 0 20px;
}
.card-white {
background-color: #393E46;
border-radius: 5px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
padding: 30px;
margin-bottom: 20px;
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.card-white:hover {
transform: translateY(-4px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
#header-card h1 {
text-align: center;
color: #DFD0B8;
}
#image-div img {
border-radius: 50%;
margin-top: 10px;
width: 150px;
display: block;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 960px) {
.container {
max-width: 700px;
}
}
@media (max-width: 720px) {
.container {
max-width: 500px;
}
}
@media (max-width: 540px) {
.container {
max-width: 300px;
}
}