-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (97 loc) · 1.61 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
*{
margin:0;
padding: 0;
}
.list{
display: flex;
flex-direction: row;
list-style-type: none;
position: relative;
left: -190px;
top: 370px;
}
.list-item{
margin: 0px 20px;
color:rgba(145, 145, 145) ;
}
.list-item:first-child{
color: #000;
font-weight: bold;
}
.navbar-container img{
width:8%;
margin-top: 30px;
margin-left: 50px;
}
div:nth-child(2){
margin-left: 400px;
position: relative;
bottom: 400px;
}
button{
position: relative;
left: 90%;
z-index: 2;
bottom: 60px;
padding: 10px 20px;
background-color: #5955b3;
color: #ffffff;
border: none;
border-radius: 8px;
}
.btn{
position: relative;
left: 100px;
top: 50px;
border: none;
border-radius: 8px;
background-color: #5955b3;
color: #ffffff;
}
.heading-text{
font-size: 70px;
width: 40%;
position: relative;
left: 40px;
}
span{
color: #5955b3;
}
.description{
position: relative;
top: 20px;
width: 25%;
left: 50px;
color: rgba(145, 145, 145);
}
body{
overflow: hidden;
}
@media screen and (max-width:500px) {
.list{
font-size: 50px;
margin-top: 30px;
}
button{
display: none;
}
.heading-text{
font-size: 100px;
width: 160vw;
text-align: center;
margin-top: 100px;
}
.description{
font-size: 40px;
width: 160vw;
text-align: center;
}
div:nth-child(2){
z-index: -1;
}
.navbar-container img{
width: 30%;
position: relative;
top: 50px;
}
}