forked from Vedema/Data_Analytics_ARU
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.css
More file actions
129 lines (107 loc) · 1.89 KB
/
Copy pathtest.css
File metadata and controls
129 lines (107 loc) · 1.89 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
125
126
127
128
129
/* GENERAL */
body {
background-color: #F8F9FA;
color: #333;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* NAVBAR */
.navbar {
background-color: #0A192F !important;
}
.navbar-brand {
color: #F4D35E !important;
font-weight: bold;
}
.nav-link {
color: #ffffff !important;
}
.nav-link:hover {
color: #00BFA6 !important;
}
/* HERO */
.hero {
background: linear-gradient(135deg, #0A192F, #112240);
color: #ffffff;
padding: 100px 20px;
}
.highlight {
color: #F4D35E;
font-weight: bold;
}
/* BUTTON */
.custom-btn {
background-color: #00BFA6;
color: #fff;
border: none;
border-radius: 25px;
padding: 10px 20px;
transition: 0.3s;
}
.custom-btn:hover {
background-color: #009e8e;
color: #fff;
}
/* CARDS */
.fancy-card {
border: none;
border-radius: 12px;
transition: 0.3s;
background-color: #ffffff;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.fancy-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.card-title {
color: #0A192F;
font-weight: bold;
}
.card-text {
color: #555;
}
/* SECTION TITLES */
h2 {
color: #0A192F;
font-weight: bold;
}
.intro {
color: #666;
}
/* CONTACT FORM */
.form-div {
background-color: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.form-control:focus {
border-color: #00BFA6;
box-shadow: 0 0 5px rgba(0, 191, 166, 0.3);
}
/* FOOTER */
#footer {
background-color: #0A192F;
padding: 20px 0;
}
.socicons-list {
list-style: none;
text-align: center;
padding: 0;
}
.socicons-list li {
display: inline-block;
margin: 0 10px;
}
.socicons-list a {
color: #ffffff;
font-size: 20px;
transition: 0.3s;
}
.socicons-list a:hover {
color: #00BFA6;
}
/* COPYRIGHT */
.copyright {
color: #777;
}