-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (69 loc) · 1.28 KB
/
style.css
File metadata and controls
80 lines (69 loc) · 1.28 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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f4f4f4;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}
.business-card {
background: white;
padding: 40px;
border-radius: 0;
text-align: center;
width: 600px;
height: 220px;
border-radius: 15px;
border: 2px solid rgb(66, 63, 58);
}
.business-card h2 {
margin-top: 8px;
font-size: 42px;
color: #333;
}
.business-card p {
margin: 10px 0;
color: #666;
font-size: 18px;
}
.social-links {
margin-top: 20px;
}
.social-links a {
display: inline-block;
margin: 20px;
color: #363639;
font-size: 15px;
font-weight: bold;
text-decoration: underline;
}
.social-links a:hover {
text-decoration: underline;
}
.pr {
color: rgb(140, 22, 218);
text-decoration: underline;
cursor: pointer;
}
@media (max-width: 768px) {
.business-card {
width: 90%;
height: auto;
padding: 20px;
}
.business-card h2 {
font-size: 24px;
}
.business-card p {
font-size: 16px;
}
.social-links a {
font-size: 18px;
}
}