-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (93 loc) · 1.77 KB
/
style.css
File metadata and controls
95 lines (93 loc) · 1.77 KB
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
body{
margin: 0;
padding: 0;
font-family: "Roboto", sans-serif;
background-color: #E4E9F7;
}
html{
scroll-behavior: smooth;
}
.upper-Section{
background-image: linear-gradient(to bottom, #E4E9F7, #695CFE );
padding-bottom: 40px;
}
.topNav{
height: 40px;
align-items: center;
justify-content: center;
display: flex;
position: fixed;
top: 0;
width: 100%;
}
.navbar{
display: flex;
height: 50px;
width: 100%;
align-items: center;
justify-content: space-between;
background: #695CFE;
position: fixed;
top: 0;
}
.navLinks{
display: inline-block;
}
.navbar img{
width: 90px;
padding-left: 20px;
}
.navbar ul{
list-style-type: none;
display: flex;
margin-right: 40px;
}
.navbar ul li{
margin-left: 20px;
position: relative;
}
.navbar ul li a{
text-decoration: none;
color: #fff;
transition: 0.3s ease-in;
}
.navbar ul li a:hover{
background-color: #8a7fff;
padding: 6px;
border-radius: 5px;
}
.upper-Section .Upper-Section-Text{
text-align: center;
margin-top: 50px;
}
.upper-Section .Upper-Section-Text .wellcome{
font-size: 40px;
margin-top: 120px;
}
.btn-sign{
align-items: center;
display: flex;
justify-content: center;
}
.btn-sign button{
background-color: #fff;
color: #695CFE;
border: none;
margin: 15px 12px;
border-radius: 4px;
font-size: 15px;
font-weight: 600;
padding: 8px 15px;
cursor: pointer;
}
.img-back{
align-items: center;
justify-content: center;
display: flex;
margin-top: 20px;
}
.img-back img{
width: 500px;
border: 4px solid black;
border-radius: 10px;
}