-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.css
111 lines (111 loc) · 2.21 KB
/
index.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
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
*{
font-family: 'Josefin Sans', sans-serif;
}
body,html{
width: 100%;
height: 100%;
padding: 0px;
margin: 0px;
background-color: #38b6ff;
}
.fixedHeader{
position: fixed;
top: 0px;
left: 0px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 98%;
height: 70px;
padding-left: 1%;
padding-right: 1%;
opacity: 0;
background-color: #38b6ff;
box-shadow: 0px 0px 10px #000000;
}
.fixedHeader .left{
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
color: #ffffff;
}
.fixedHeader .left img{
border-radius: 50px;
margin: 10px;
height: 40px;
width: 40px;
}
.fixedHeader .right a{
color: #ffffff;
font-size: 20px;
text-decoration: none;
padding-right: 10px;
padding-left: 10px;
}
header{
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
header h1{
transition-duration: 1s;
opacity: 0;
font-size: 100px;
margin-top: 100vh;
margin: 0px;
color: #ffffff;
}
header img{
transition-duration: 1s;
border-radius: 15px;
}
.section1{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100vh;
flex-direction: column;
background-color: #ffffff;
}
.section1 h1{
font-size: 50px;
}
.section1 p{
font-size: 20px;
margin: 5px;
text-align: center;
width: 75%;
}
.section1 button{
padding: 10px 20px 10px 20px;
border-radius: 50px;
border: none;
margin: 10px;
font-size: 20px;
color: #ffffff;
background-color: #55c1ff;
transition-duration: .25s;
cursor: pointer;
}
.section1 button:hover{
background-color: #00a2ff;
}
::-webkit-scrollbar{
width: 10px;
}
::-webkit-scrollbar-thumb{
width: 10px;
border-radius: 50px;
background-color: #38b6ff;
}
::-webkit-scrollbar-track{
background-color: #ffffff;
width: 10px;
}