-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.css
More file actions
75 lines (64 loc) · 1.24 KB
/
Copy pathabout.css
File metadata and controls
75 lines (64 loc) · 1.24 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
body {
font-family: 'Montserrat', sans-serif;
margin: 0;
padding: 0;
background-color: #969191;
color: #333;
}
.container {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
margin-bottom: 20px;
font-family: 'Oswald', sans-serif;
color: green;
}
.developer {
text-align: center;
margin-bottom: 40px;
}
.developer img {
width: 150px;
height: 150px;
border-radius: 50%;
margin-bottom: 10px;
border: 2px solid green;
}
.developer h2 {
margin-bottom: 5px;
font-family: 'Oswald', sans-serif;
color: green;
}
.developer p {
margin-bottom: 5px;
font-size: 16px;
}
.quote {
font-style: italic;
color: #555;
margin-bottom: 10px;
}
.btn-container {
margin-top: 10px;
}
.btn {
display: inline-block;
padding: 8px 16px;
margin: 5px;
background-color: green;
color: #fff;
border: none;
border-radius: 4px;
text-decoration: none;
cursor: pointer;
font-family: 'Roboto', sans-serif;
}
.btn:hover {
background-color: green;
}