-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrumpy.css
127 lines (103 loc) · 1.39 KB
/
grumpy.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
html, body {
height: 100%;
font-family: 'Lato';
font-weight: 300;
margin: 0;
}
ul {
list-style-type: none;
background-color: #e84242;
width: 100%;
position: fixed;
top: 0;
padding: 0;
margin: 0;
}
li {
display: inline-block;
font-size: 20px;
padding: 20px;
}
a {
text-decoration: none;
}
a, a:active {
color: white;
}
a:hover {
color: black;
}
.info a {
color: #e84242;
}
.info a:hover {
color: #333;
}
section {
height: 100%;
padding-top: 60px;
}
.video {
padding-top: 15px;
padding-left: 30px;
}
section#about {
background-color: white;
}
section#ilike {
background-color: #2DAEBF;
}
#about div {
width: 45%;
display: inline-block;
}
#about .avatar {
padding-left: 30px;
overflow: hidden;
height: 500px;
width: 500px;
}
#about div img {
height: 100%;
width: 100%;
}
#about .grow img {
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
#about .grow img:hover {
width: 550px;
height: 550px;
}
h1 {
margin: 0;
padding: 30px;
}
footer {
background-color: #333;
text-align: right;
color: #858585;
}
.author {
padding: 15px;
display: inline-block;
}
.socials {
padding-left: 10px;
padding-right: 10px;
font-size: 30px;
color: #858585;
}
.socials:hover {
color: white;
}
p {
font-size: 20px;
padding-left: 30px;
}
.info p {
padding-left: 50px;
}