-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
108 lines (91 loc) · 2.72 KB
/
Copy pathindex.css
File metadata and controls
108 lines (91 loc) · 2.72 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
body {
background: #0c0c0c;
color: #eee;
font-family: "Poppins", sans-serif;
}
.navbar {
background: #0c0c0c !important;
border-bottom: 1px solid rgba(255, 215, 0, 0.18);
padding: 1rem 2.5rem;
}
.navbar-brand {
font-weight: 700;
color: #ffd700 !important;
letter-spacing: 2px;
}
.nav-link {
color: #ddd !important;
margin: 0 8px;
padding: 5px 12px !important;
border-radius: 4px;
transition: 0.25s;
}
.nav-link:hover {
background: rgba(255, 215, 0, 0.15);
color: #ffd700 !important;
}
/* LOGIN NAV */
.nav-login {
background: linear-gradient(45deg, #ffd700, #b8930b);
color: #000 !important;
font-weight: 600;
border-radius: 4px;
padding: 7px 14px !important;
box-shadow: 0 0 8px rgba(255,215,0,0.4);
}
.nav-login:hover {
background: #fff;
box-shadow: 0 0 12px #fff;
}
.hero {
text-align: center;
padding: 120px 20px 80px;
}
.hero h1 {
font-size: 3rem;
font-weight: 700;
color: #ffd700;
text-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
}
.hero p {
margin: 18px auto;
max-width: 550px;
opacity: 0.85;
}
.btn-tentang {
border: 1px solid #ffd700;
background: transparent;
color: #ffd700;
border-radius: 4px;
padding: 8px 22px;
letter-spacing: 1px;
transition: 0.25s;
font-size: .9rem;
}
.btn-tentang:hover {
background: #ffd700;
color: #000;
box-shadow: 0 0 12px rgba(255,255,255,0.5);
}
.info-box {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,215,0,0.1);
border-radius: 8px;
padding: 25px;
transition: 0.25s;
}
.info-box:hover {
box-shadow: 0 0 18px rgba(255,215,0,0.2);
}
h4 {
color: #ffd700;
font-weight: 600;
margin-bottom: 10px;
}
footer {
text-align: center;
opacity: 0.7;
font-size: .8rem;
padding: 20px;
border-top: 1px solid rgba(255,215,0,0.15);
}