-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
111 lines (93 loc) · 1.75 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
107
108
109
110
111
* {
margin: auto;
}
body {
background-repeat: no-repeat;
background-image: url('images/starBlades.jpg');
background-attachment: fixed;
}
h1, h2, .tagline{
color: rgba(240, 248, 255, 0.616);
}
#bgtrans {
background: rgba(0, 0, 0, 0.712);
padding: 0.45%;
margin: 0;
}
.hrline {
background: linear-gradient(90deg, rgb(255, 255, 255), transparent);
height: 3px;
width: 100%;
border-radius: 50px;
margin-top: 10px;
}
h1 {
font-family: 'Kaushan Script', cursive;
font-size: 48px;
}
.mypic {
border-radius: 160px;
height: 205px;
width: 205px;
margin-left: auto;
box-shadow: 0 0 7px rgb(73, 85, 243), 0 0 20px white;
}
.tagline {
font-size: 21px;
}
.links img {
height: 40px;
width: 40px;
margin-top: 7%;
padding-right: 5px;
transition: 600ms;
}
.links img:hover {
height: 55px;
width: 55px;
padding-top: -5px;
padding-bottom: 15px;
margin: 0%;
transition: 360ms;
}
#content{
display: inline-block;
margin: 0 0 0 25px;
text-align: left;
}
.main{
margin: 195px auto 208px auto;
text-align: center;
}
@media only screen and (max-width:620px) {
h1 {
font-family: 'Kaushan Script', cursive;
font-size: 45px;
margin-top: 25px;
}
.main{
margin-top: 16%;
/* margin-bottom: 10%; */
/* width: 90%; */
}
#content {
visibility: visible;
width: 75%;
margin: 0;
}
#mypic {
border-radius: 160px;
height: 160px;
width: 160px;
}
.tagline {
font-size: 18px;
}
.links img {
height: 34px;
width: 34px;
margin-top: 7%;
padding-right: 5px;
transition: 600ms;
}
}