-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
114 lines (101 loc) · 2.36 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@700&family=Montserrat:wght@400;600&display=swap');
html{
font-size:10px;
}
*{
box-sizing:border-box;
}
body{
margin:0;
padding:0;
min-height:100vh;
background-color:#45badd;
}
.container{
height:100vh;
width:100vw;
background-image:url('./images/robot.gif');
background-repeat: no-repeat;
background-size:contain;
background-position:left center;
}
.header-text{
text-align:center;
color:#fff;
line-height:1;
}
.header-text h1{
font-family:'Montserrat Alternates', sans-serif;
font-size:5rem;
text-shadow:0 0.2rem 0.5rem rgba(0,0,0,0.4);
}
.header-text p{
font-family:'Montserrat',sans-serif;
font-size:2.3rem;
font-weight:600;
text-shadow:0 0.2rem 0.5rem rgba(0,0,0,0.4);
}
.flex-container{
height:70vh;
display:flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.flex-container button{
outline:none;
cursor: pointer;
padding:1.5rem 2rem;
background:linear-gradient(to top,#ff5d9e,#ff427f);
color:#fff;
font-family:'Montserrat',sans-serif;
font-size:2rem;
font-weight:400;
border:none;
border-radius:0.7rem;
box-shadow:0 0.5rem 0.8rem rgba(0,0,0,0.4);
}
.flex-container button:active{
transform:translateY(0.8rem);
background:linear-gradient(to bottom,#ff5d9e,#ff427f);
box-shadow:none;
}
.flex-container button:disabled{
filter:brightness(30%);
cursor:default;
}
/* Combined media query for both mobile and tablet size */
@media screen and (max-width:1000px)and(min-width:662px),screen and (max-width:662px){
.flex-container button:active{
transform:scale(0.98);
}
.flex-container button{
-webkit-tap-highlight-color:transparent;
}
.flex-container button:disabled{
display:none;
}
}
/* Media Query:For Tablet Size */
@media screen and (max-width:1000px)and(min-width:662px){
.header-text h1{
font-size:4rem;
}
.header-text p{
font-size:2rem;
}
}
/* Media Query:For mobile size */
@media screen and (max-width:662px){
.header-text h1{
font-size:3.8rem;
line-height:0.8;
}
.header-text p{
font-size:1.9rem;
}
.container{
background-position: center;
background-size:cover;
}
}