-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (92 loc) · 1.71 KB
/
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
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
103
104
105
106
*{
margin: 0;
padding: 0;
text-decoration: none;
}
body {
background-size: cover;
background-position: center;
background-attachment: fixed;
background-image: url("data/bg6.jpg");
}
.name {
text-align: center;
color: white;
font-family: 'Spartan', 'Arima Madurai','Corinthia';
font-size: 40px;
font-weight: 300;
overflow: hidden;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}
#pfp_links {
border-radius: 50%;
height: 200px;
width: 200px;
margin: 30px 0px;
}
.link_cont {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: auto;
text-align: center;
}
.link_box {
background-color: #ffffffbd;
border-radius: 15px;
height: 75px;
width: 400px;
padding: 0px 2vw;
display: flex;
flex-direction: row;
align-items: center;
transition: 0.2s;
}
.link_box:hover {
background-color: #ffffff;
scale: 1.05;
}
.link_in {
margin: 10px;
}
.about_links {
font-family: 'Spartan', Arial;
color: white;
font-size: 20px;
word-spacing: 2px;
text-align: center;
margin: 25px 0px 5px 0px;
}
.fab, .fas{
color: #123133;
}
.link_txt {
color: #123133;
font-size: 22px;
font-family: 'Ubuntu', Arial;
margin: 30px;
}
#mal_icon {
height: 2.8em;
width: 2.7em;
line-height: 1;
border-radius: 10%;
filter: grayscale(90%) contrast(160%);
}
@media screen and (max-width: 800px) {
}
@media screen and (max-width: 500px) {
.link_box {
width: 85vw;
height: 70px;
padding: 0 1.1rem;
}
#pfp_links {
height: 150px;
width: auto;
}
.link_txt{
font-size: 18px;
}
}