-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle.css
124 lines (111 loc) · 2.13 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body {
background-color: #daedf3;
font-family: sans-serif;
font-size: 13pt;
}
html * {
box-sizing: border-box;
}
.header {
position: relative;
max-width: 100%;
height: 100vh;
margin-top:0;
background: linear-gradient(to bottom,
rgb(201, 220, 183)0%,
rgba(158, 216, 192, 1)23%,
rgba(61, 151, 193, 1)42%,
rgba(103, 103, 158, 1)80%,
rgba(145, 145, 189, 1)100%);
background-size: 100% 400%;
animation: gradient 10s ease-in-out infinite alternate;
}
@keyframes gradient{
0%{
background-position: 0 0;
}
50%{
background-position: 0 50%;
}
100%{
background-position: 0 100%;
}
}
.headcontent{
max-width: 100%;
text-align: center;
padding: 100px 0px 110px 60px;
overflow:hidden;
}
h1{
font-size: 75px;
-webkit-text-fill-color: transparent;
-webkit-text-stroke: 2px black;
}
.scroll-down{
text-align: center;
position: relative;
padding: 15px;
margin: 0 auto;
display: block;
}
.project{
margin: 50px auto 50px auto;
width: 75%;
}
.content{
position: relative;
border: 1px solid #daedf3;
columns: 2;
column-gap: 50px;
margin: 50px 0px 80px 0px;
display: block;
}
.image img{
margin-left: auto;
margin-right: auto;
display: block;
width: 683px;
height: 386px ;
border: 2px solid black;
}
.heads{
margin-top: -20px;
}
.content p{
margin-top: 0;
}
.contact{
position: relative;
margin: 50px auto 50px auto;
text-align: center;
}
@media(max-width: 375px){
body{
font-size:10pt;
}
.header{
position: relative;
height: 600px;
max-width:100%;
}
.headcontent{
padding: 80px 80px 0px 70px;
}
h1{
font-size: 45px;
}
.image img{
display: block;
height:175px;
max-width:100%;
}
.project{
margin: 50px auto 50px auto;
max-width: 100%;
width: 60%;
}
.content {
columns: 1;
}
}