-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
156 lines (134 loc) · 2.49 KB
/
main.css
File metadata and controls
156 lines (134 loc) · 2.49 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
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
146
147
148
149
150
151
152
153
154
155
156
body {
margin: 0;
padding: 0;
background: linear-gradient(to right, silver, white, gray);
font-family: 'Merienda One', cursive;
}
html,body{
height:100%;
}
.fontst{
font-family: 'Merienda One', cursive;
}
.projectinfo{
width: 210px;
background: linear-gradient(to right, lightyellow, lightblue, #c3cbd8);
}
.projimg{
width:220px;
height:140px;
padding: 10px;
border-radius: 40px;
}
.p{
font-size: 12px;
color:black;
background: linear-gradient(to right, lightyellow, lightblue, #c3cbd8);
border: 1px solid red;
padding: 10px;
border-radius: 25px;
width:230px;
}
.buckets div {
position: absolute;
animation: bucket_rotate 500s infinite linear;
}
@keyframes bucket_rotate {
0% {
transform: rotate(0) translateX(700px) rotate(0);
}
100% {
transform: rotate(360deg) translateX(700px) rotate(-360deg);
}
}
.buckets div:nth-child(1){
width: 200px;
}
.buckets div:nth-child(2) {
animation-delay: -62.5s;
width: 200px;
}
.buckets div:nth-child(3) {
animation-delay: -125s;
width: 200px;
}
.buckets div:nth-child(4) {
animation-delay: -187.5s;
width: 200px;
}
.buckets div:nth-child(5) {
animation-delay: -250s;
width:200px;
}
.buckets div:nth-child(6) {
animation-delay: -312.5s;
width: 200px;
}
.buckets div:nth-child(7) {
animation-delay: -375s;
width: 200px;
}
.buckets div:nth-child(8) {
animation-delay: -437.5s;
width: 200px;
}
.separater{
height:20%;
}
#body{
height:700px;
position: absolute;
top: 70%;
left:-100px;
}
* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}
/* Slideshow container */
.slideshow-container {
max-width: 500px;
position: relative;
margin: auto;
}
/* The dots/bullets/indicators */
.dot {
height: 15px;
width: 15px;
margin: 0 2px;
background-color: transparent;
border-radius: 50%;
}
/* Fading animation */
.fade {
-webkit-animation-name: slideimg;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@-webkit-keyframes slideimg {
from {opacity: .4;}
to {opacity: 1;}
}
@keyframes slideimg {
from {opacity: .4;}
to {opacity: 1;}
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
.text {font-size: 11px;}
}
.smaller{
height: 400px;
}
.abouttitel{
text-align: center
}
.portfoliopic{
border-radius: 50%;
}
#commentpage{
height:100%;
width: 100%;
background: linear-gradient(#8CEBFF);
}