-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
159 lines (152 loc) · 2.47 KB
/
style.css
File metadata and controls
159 lines (152 loc) · 2.47 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
157
158
159
*{
margin: 0px;
padding: 0px;
}
.FlexDiv{
width: 966px;
margin-bottom: 70px;
}
.FlexDiv a{
margin-right: 210px;
width: 255px;
}
.Flex {
padding: 3px;
margin: 3px;
height: 130px;
width: 420px;
flex-basis: 49%;
border-radius: .6rem;
transition: .4s;
flex-basis: 49%;
display: flex;
flex-wrap: wrap;
flex-direction: column;
}
.Flex:hover{
background-color: #ececec;
transform: scale(1.04,1.04);
cursor:pointer;
}
.Flex img {
width: 130px;
height: 130px;
border-radius: .6rem;
margin-right: 15px;
}
.Flex p, .Flex h4, .Flex h5, .Flex h6, .Flex a, .FlexDiv a {
width: 450px;
display: inline-block;
margin: 10px 0px 0px 15px;
vertical-align: top;
color: #757575;
}
.Flex p {
word-wrap: break-word;
margin: 10px 0px 0px 15px;
height: 20px;
color: #757575;
}
header{
background-image: url(pictures/background.jpg);
height: 500px;
background-color:rgba(255,255,255,0.6);
background-size: auto;
background-blend-mode:lighten;
background-size: 100% auto;
margin: 0 0 0 0;
padding: 0 0 0 0;
}
header h1{
margin-left: 55px;
margin-top: 55px;
font-size: 60px;
color: #000;
-webkit-text-stroke: 2px #FFF;
}
header nav{
padding-top: 12px;
text-align: center;
background-color: black;
height: 65px;
box-sizing: border-box;
}
nav *{
color: aliceblue;
}
nav ul{
display: flex;
list-style: none;
display: inline-flex;
margin: 0px 200px 0px 7px;
height: 23px;
color: #757575;
/* margin-top: 12px; */
}
/*
nav li, :not(img){
padding: 0;
margin-right: 55px;
margin-left: 10px;
}
*/
header img{
width: 70px;
}
a {
text-decoration: none;
}
.main-box {
float: left;
width: 100%;
}
main{
width: 900px;
margin: 0 auto;
}
h1{
font-size: 44px;
margin: 0px 0px 0px 0px ;
}
h2{
font-size: 33px;
}
h3{
font-size: 22px;
}
.text_fadein{
animation-name: fade;
animation-duration: 2.5s;
animation-iteration-count: 1;
}
.link a{
display: block;
}
@keyframes fade{
0%{
opacity: 0;
}
100%{
opacity: 1;
}
}
.animation_box {
padding: 10px;
animation: fadeIn 2.5s ease 1s 1 normal backwards;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
nav ul li a {
width: 100px;
display: inline-block;
margin: 10px 0px 0px 15px;
vertical-align: top;
}