File tree 3 files changed +71
-0
lines changed
3 files changed +71
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+
4
+ < head >
5
+ < meta charset ="UTF-8 ">
6
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
7
+ < meta http-equiv ="X-UA-Compatible " content ="ie=edge ">
8
+
9
+ < title > HAS Lambda</ title >
10
+
11
+ < link rel ="stylesheet " type ="text/css " href ="style.css ">
12
+
13
+ < link href ="https://fonts.googleapis.com/css?family=Montserrat:700&display=swap " rel ="stylesheet ">
14
+ </ head >
15
+
16
+ < body >
17
+ < h1 id ="title "> WELCOME TO HAS LAMBDA</ h1 >
18
+ < div id ="logo-container ">
19
+ < img id ="logo " src ="assets/bg.png ">
20
+ </ div >
21
+ </ body >
22
+
23
+ </ html >
Original file line number Diff line number Diff line change
1
+ body {
2
+ background : rgb (23 , 0 , 65 );
3
+ background : linear-gradient (
4
+ 135deg ,
5
+ rgba (23 , 0 , 65 , 1 ) 0% ,
6
+ rgba (65 , 0 , 22 , 1 ) 100%
7
+ );
8
+ height : 90% ;
9
+ }
10
+
11
+ html {
12
+ height : 100% ;
13
+ margin : 0 ;
14
+ }
15
+
16
+ # logo-container {
17
+ display : flex;
18
+ flex-direction : row;
19
+ flex-wrap : nowrap;
20
+ justify-content : flex-end;
21
+ align-items : stretch;
22
+ align-content : stretch;
23
+ height : 100% ;
24
+ }
25
+
26
+ # logo {
27
+ width : 700px ;
28
+ align-self : flex-end;
29
+ margin : auto 0 ;
30
+ }
31
+
32
+ # title {
33
+ position : absolute;
34
+ top : 50% ;
35
+ font-family : "Montserrat" , sans-serif;
36
+ color : white;
37
+ font-size : 3em ;
38
+ margin : 1em ;
39
+ }
40
+
41
+ @media screen and (max-width : 800px ) {
42
+ # title {
43
+ font-size : 2em ;
44
+ }
45
+ # logo {
46
+ width : 80% ;
47
+ }
48
+ }
You can’t perform that action at this time.
0 commit comments