-
Notifications
You must be signed in to change notification settings - Fork 0
/
about_me.css
145 lines (129 loc) · 2.86 KB
/
about_me.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
* {
font-family: 'Averia Libre', cursive;
}
#aboutpaula {
background: #7E8394;
overflow-x: hidden;
box-sizing: border-box;
padding: 0;
border: 0;
margin-top: 0;
}
#pagewrapper {
background: #FFFFFF;
width: 90%;
height: 100%;
max-width: 1350px;
overflow-x: hidden;
margin: 0 auto 30px;
position: relative;
}
#header {
margin: 5px;
padding: 5px;
font-weight: 700;
}
#sidebar {
margin: 10px;
padding: 10px;
font-weight: 400;
display: block;
}
#contentwrapper {
margin-top: 30px;
vertical-align: top;
height: 50px;
margin: 20px;
padding: 10px;
font-weight: 400;
border-radius: 10px;
display: inline-block;
position: relative;
}
p, strong, a {
margin-top: 10px;
vertical-align: top;
font-weight: 400;
font-size: 24;
position: relative;
display: inline;
}
.photobubble {
height: 100px;
width: 100px;
border: 2px solid gray;;
border-radius: 50%;
-webkit-animation: bubble 5s infinite;
-webkit-animation-play-state: running;
}
.photobubble:hover {
height: 200px;
width: 200px;
-webkit-animation-play-state: paused;
-webkit-animation: stopbubble 5s infinite;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes bubble {
50% {-webkit-transform: rotate(180deg);}
}
/* Standard syntax */
@keyframes bubble {
50% {transform: rotate(180deg);}
}
.nobubble {
height: 100px;
width: 100px;
border: 2px solid gray;;
border-radius: 50%;
-webkit-animation-play-state: paused;
}
.nobubble:hover {
height: 200px;
width: 200px;
-webkit-animation-play-state: paused;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes stopbubble {
0% {-webkit-transform: rotate(0deg);}
}
/* Standard syntax */
@keyframes stopbubble {
0% {transform: rotate(0deg);}
}
.button {
position: relative;
top: 10;
left: 10;
border-top: 1px solid #96d1f8;
background: #65a9d7;
background: -webkit-gradient(linear, left top, left bottom, from(#3e779d), to(#65a9d7));
background: -webkit-linear-gradient(top, #3e779d, #65a9d7);
background: -moz-linear-gradient(top, #3e779d, #65a9d7);
background: -ms-linear-gradient(top, #3e779d, #65a9d7);
background: -o-linear-gradient(top, #3e779d, #65a9d7);
padding: 5px 10px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
-webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
-moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
box-shadow: rgba(0,0,0,1) 0 1px 0;
text-shadow: rgba(0,0,0,.4) 0 1px 0;
color: white;
font-size: 14px;
font-family: Helvetica, Arial, Sans-Serif;
text-decoration: none;
vertical-align: middle;
}
.button:hover {
border-top-color: #28597a;
background: #28597a;
color: #ccc;
}
.button:active {
border-top-color: #1b435e;
background: #1b435e;
}
.hiddenbutton {
opacity: .05;
}