-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (75 loc) · 1.88 KB
/
style.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
@import url('https://fonts.googleapis.com/css?family=Indie+Flower&display=swap');
body {
overflow-x: hidden;
font-family: 'Indie Flower', cursive;
color: darkslategrey;
}
/* Navigation */
.navbar {
font-family: 'Indie Flower', cursive;
text-transform: uppercase;
font-weight: 700;
font-size: .9rem;
letter-spacing: .1rem;
background: rgba(0,0,0,0.6)!important;
}
.navbar-brand img {
height: 2rem;
}
.navbar-nav li {
padding-right: .7rem;
}
.navbar-dark .navbar-nav .nav-link {
color: white;
padding-top: .8rem;
}
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
color: #1EBBA3;
}
/* langing page */
.home-inner {
background-image: url(back1.jpg);
}
.caption {
width: 100%;
max-width: 100%;
position: absolute;
top: 30%;
z-index: 1;
color: white;
text-transform: uppercase;
text-shadow: .1rem .1rem 2rem black;
}
.caption h1 {
font-family: 'Indie Flower', cursive;
font-size: 3.8rem;
font-weight: 700;
letter-spacing: .3rem;
text-shadow: .1rem .1rem 2rem black;
padding-bottom: 1rem;
}
.caption h3 {
font-size: 2rem;
text-shadow: .1rem .1rem 2rem black;
padding-bottom: 1.6rem;
}
.btn-lg {
text-shadow: .1rem .1rem 2rem black;
border-radius: 0;
border-width: medium;
padding: .6rem 1.3rem;
font-size: 1.1rem;
}
/*============ BOOTSTRAP BREAK POINTS:
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap
Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }
Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }
Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }
Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
=============*/