-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (51 loc) · 917 Bytes
/
style.css
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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
body {
font-family: 'Open Sans', sans-serif;
background: linear-gradient(0deg, rgb(253, 143, 103), rgb(212,99,163));
min-height: 110vh;
}
img {
border-radius: 60%;
}
a {
color: white;
text-decoration: none;
}
a:hover {
color: rgb(250, 40, 113);
}
section {
width: 50%;
margin: auto;
text-align: center;
margin-top: 30px;
}
.inner-link {
background-color: transparent;
padding: 20px;
transition: 0.1s ease-in;
border: 2px solid white;
font-weight: bold;
font-size: 18px;
}
.inner-link:hover {
background-color: white;
}
.sub-head {
color: white;
font-size: 17px;
}
.sub-head a:hover {
color: black;
}
.links-section {
margin-top: 30px;
}
.sub-sec {
margin: 15px 0px;
}
@media screen and (max-width: 720px) {
section {
width: 100%;
}
}