-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathstyle2.css
97 lines (85 loc) · 1.97 KB
/
style2.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
body {
margin: 0;
width: 100%;
height: 100vh;
font-family: 'Poppins', sans-serif;
color: #222;
/* background: url(bg.jpg);
background-repeat: repeat; */
/* background-size: 400% 400%; */
overflow-x: hidden;
background: linear-gradient(-45deg, #3498db, #1473b3);
background-size: 400% 400%;
animation: gradientBG 5s ease infinite;
}
@keyframes gradientBG {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.wrapper {
height: 77vh;
margin-top: 7vh;
border-radius: 15px;
background: white;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}
.wrapper:hover {
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
nav {
font-family: 'Poppins', sans-serif;
background-color: #3498db;
height: 80px;
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10), 0 10px 10px rgba(0, 0, 0, 0.10);
}
.navbar-brand {
font-size: 30px !important;
font-weight: 700;
font-family: 'Montserrat', sans-serif;
color: white !important;
}
.nav-link {
font-size: 20px !important;
font-weight: 700;
font-family: 'Montserrat', sans-serif;
}
.active {
background: #1d567c;
color: white !important;
border-radius: 30px;
}
.img-sign-in {
width: 100%;
margin-top: 30px;
}
.txtlogin {
font-size: 50px;
font-weight: 800 !important;
font-family: 'Montserrat', sans-serif;
color: #3498db;
}
.txtlogin2 {
font-size: 17px;
font-weight: 800 !important;
font-family: 'Montserrat', sans-serif;
color: #3498db;
}
.form-control {
font-size: 20px;
font-family: 'Montserrat', sans-serif;
}
.btnlogin {
background: #3498db !important;
border-radius: 10px !important;
color: white !important;
font-weight: 800 !important;
font-size: 20px !important;
}