-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
63 lines (54 loc) · 1.2 KB
/
styles.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
52
53
54
55
56
57
58
59
60
61
62
63
* {
background-color: #131313;
color: white;
font-family: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
}
.main {
width: 350px;
height: 400px;
background: #6190E8;
background: -webkit-linear-gradient(to right, #A7BFE8, #6190E8);
background: linear-gradient(to right, #A7BFE8, #6190E8);
margin-left: auto;
margin-right: auto;
margin-top: 100px;
border-radius: 10px;
justify-content: center;
}
.main img {
background: transparent;
margin-left: 125px;
margin-top: 40px;
}
.main h1 {
background: transparent;
font-size: 25px;
margin-left: 56px;
}
.main .icons {
background: transparent;
margin-left: 110px;
}
.main .icons i {
background: transparent;
padding: 5px;
font-size: large;
}
.main .icons a {
background: transparent;
padding: 5px;
font-size: large;
}
.main .about-me {
background: transparent;
}
.about-me p {
background-color: transparent;
text-align: justify;
padding: 0 55px 0;
}
@media (max-width: 1080px) {
.main {
margin-top: 0px;
}
}