-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
106 lines (106 loc) · 1.75 KB
/
main.css
File metadata and controls
106 lines (106 loc) · 1.75 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
103
104
105
106
html {
height: 100%;
}
body {
background: linear-gradient(top, #c04848 6%, #480048 100%);
background: -webkit-linear-gradient(top, #c04848 6%, #480048 100%);
background: -moz-linear-gradient(top, #c04848 6%, #480048 100%);
background: -o-linear-gradient(top, #c04848 6%, #480048 100%);
background-attachment: fixed;
background-repeat: no-repeat;
font-family: 'Bree Serif', serif;
color: white;
font-weight: 100;
}
.wrapper {
margin-left: 5%;
margin-top: 5%;
}
.wrapper h1 {
font-size: 50px;
margin-top: 0;
}
.wrapper h3 {
margin-bottom: 0;
}
.wrapper span {
display: inline-block;
text-align: left;
font-size: 26px;
}
.wrapper img {
width: 40px;
margin: 80px 10px 0px 10px;
}
.wrapper a {
color: white;
margin: 20px;
}
.wrapper i {
padding: 10px;
border: 2px solid white;
border-radius: 50%;
}
.wrapper .social {
position: relative;
margin-top: 50px;
}
span.cursor {
font-size: 35px;
-webkit-animation: blink 0.7s infinite;
-moz-animation: blink 0.7s infinite;
animation: blink 0.7s infinite;
}
@media (max-width: 768px) {
.wrapper h1 {
font-size: 34px;
}
.wrapper h3 {
font-size: 28px;
}
.wrapper span {
font-size: 22px;
}
.wrapper .social {
text-align: center;
}
.wrapper .social i {
font-size: 22px;
}
.wrapper .social a {
margin: 5px;
}
}
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}