forked from MiauMiez/MiauMiez.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (96 loc) · 1.78 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
body{
margin: 0;
padding: 0;
background: url(bg2.jpg) no-repeat;
background-size: cover;
}
.box{
width: 450px;
background: rgba(72, 74, 109, 0.5);
padding: 40px;
padding: auto;
padding-bottom: 100px;
text-align: center;
overflow: hidden;
margin: auto;
margin-top: 5%;
color: white;
font-family: 'Century Gothic',sans-serif;
animation: slideUp 2.1s;
will-change: transform, opacity;
text-align: center
}
.box-img{
border-radius: 50%;
width: 200px;
height: 200px;
}
.box h1{
font-size: 40px;
letter-spacing: 4px;
font-weight: 100;
}
.box h5{
font-size: 20px;
letter-spacing: 3px;
font-weight: 100;
}
.box p{
text-align: justify;
}
ul{
margin: 0;
padding: 0;
}
.box li{
display: inline-block;
margin: 3px;
list-style: none;
}
.box li a{
color: white;
text-decoration: none;
font-size: 60px;
transition: all ease-in-out 250ms;
}
.box li a:hover{
color: #b9b9b9;
}
@keyframes ani {
0%{
transform: translateY(20px);
}
}
@keyframes slideUp {
0% {
transform: translateY(100px);
}
}
#projects{
padding-top: 00px;
font-size: 20px;
letter-spacing: 3px;
font-weight: 100;
font-family: 'Century Gothic',sans-serif;
}
.pr {
text-decoration: none;
font-size: 20px;
letter-spacing: 3px;
font-weight: 100;
font-family: 'Century Gothic',sans-serif;
}
.pr a:link{
color: green;
background-color: transparent;
text-decoration: none;
font-weight: 600;
color: rgb(67, 180, 214);
}
.pr a:hover{
font-size: 120%;
color: rgb(0, 41, 128);
background-color: transparent;
text-decoration: none;
font-weight: 900;
}