-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.css
More file actions
124 lines (115 loc) · 2.33 KB
/
project.css
File metadata and controls
124 lines (115 loc) · 2.33 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/* Navbar */
.navbar {
background: linear-gradient(90deg, #07a5a5, #06d6a0);
transition: background 0.3s ease-in-out;
}
.navbar-brand {
font-weight: 700;
font-size: 1.3rem;
}
.navbar-nav .nav-link {
transition: color 0.2s ease-in-out;
}
.navbar-nav .nav-link:hover {
color: #ffea00 !important;
}
/* Jumbotron */
.jumbotron {
padding-top: 8rem;
padding-bottom: 5rem;
background: linear-gradient(180deg, #e2edff 0%, #ffffff 100%);
}
.jumbotron img {
transition: transform 0.4s ease;
}
.jumbotron img:hover {
transform: scale(1.1);
}
.jumbotron h1 {
font-weight: 700;
color: #07a5a5;
}
.jumbotron p {
max-width: 600px;
margin: 0 auto;
color: #333;
}
/* Button Style */
.style-btn {
background: linear-gradient(90deg, #07c777, #06d6a0);
font-weight: 600;
padding: 0.6rem 1.3rem;
border-radius: 30px;
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
transition: all 0.3s ease-in-out;
}
.style-btn:hover {
background: linear-gradient(90deg, #06d6a0, #07c777);
transform: translateY(-3px);
box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}
/* Fitur Section */
.features-items {
background: #ffffff;
border: 1px solid #e5e5e5;
border-radius: 1rem;
transition: all 0.3s ease-in-out;
}
.features-items:hover {
background: #07c777;
color: #fff;
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.features-items h3 {
font-weight: 600;
color: #07a5a5;
}
.features-items:hover h3 {
color: #fff;
}
/* Footer */
.footer {
background: #07a5a5;
padding: 1.5rem 0;
font-size: 0.9rem;
}
.footer a {
font-weight: 600;
transition: color 0.3s ease-in-out;
}
.footer a:hover {
color: #ffea00 !important;
}
/* Typing animation */
.typing {
font-size: 1.2rem;
font-weight: 500;
color: #333;
border-right: 2px solid #07a5a5;
white-space: nowrap;
overflow: hidden;
display: inline-block;
animation: blink 0.7s infinite;
}
@keyframes blink {
50% {
border-color: transparent;
}
}
/* Typing animation */
.typing {
font-size: 1.2rem;
font-weight: 500;
color: #333;
border-right: 2px solid #07a5a5;
white-space: nowrap;
overflow: hidden;
display: inline-block;
animation: blink 0.7s infinite;
}
@keyframes blink {
50% {
border-color: transparent;
}
}