-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (82 loc) · 1.56 KB
/
style.css
File metadata and controls
102 lines (82 loc) · 1.56 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
height: 100%;
font-family: Arial, sans-serif;
}
body {
background: linear-gradient(to bottom, hsl(246, 49%, 60%) 20%, #030888 100%);
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
}
.container {
width: 100%;
text-align: center;
max-width: 600px;
padding: 20px;
margin-bottom: 10%;
}
.profile-img {
margin-bottom: 15px;
width: 100%;
height: 60%;
object-fit: fill;
}
h2 {
font-weight: lighter;
font-style: italic;
margin-top: 10px;
font-size: 1.5rem;
}
.links {
margin-top: 20px;
}
.link-button {
display: block;
background-color: #297fb900;
color: white;
padding: 15px;
text-decoration: none;
border-radius: 25px;
border: 2px solid white;
margin: 10px 0;
font-size: 1.2rem;
transition: background-color 0.3s;
}
.link-button:hover {
background-color: black;
color: white;
}
header{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 2em;
}
/* footer {
margin-bottom: 10%;
align-self: auto;
position: relative;
}
.footer-button {
background-color: #020910;
color: white;
padding: 15px ;
text-decoration: none;
border-radius: 25px;
font-size: 1.2rem;
font-weight: bold;
transition: background-color 0.3s;
}
.footer-button:hover {
background-color: #2c3e50;
} */