-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (97 loc) · 1.49 KB
/
style.css
File metadata and controls
110 lines (97 loc) · 1.49 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
body
{
font-family: 'PT Sans', sans-serif;
}
header
{
background-image: url("header.jpg");
background-position: center center;
background-size: cover;
height: 100vh;
}
hr {
max-width: 50px;
border-width: 3px;
border-color: #22A7F0;
}
.text-faded {
color: rgba(255, 255, 255, 0.7);
}
.btn {
font-weight: 700;
border: none;
border-radius: 300px;
padding: 1rem 2rem;
}
.btn-primary {
background-color: #22A7F0;
border-color: #22A7F0;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
color: #fff;
background-color: #59ABE3;
}
/*section heights*/
section {
padding: 8rem 0;
}
.section-heading {
margin-top: 0;
}
/*exmaples grid*/
#examples .card-body, .card
{
height: 150px;
width:250px;
display: flex;
justify-content: center;
align-items: center;
background-color: #22A7F0;
box-shadow: 0px 10px 5px #D2D7D3;
}
#examples h3
{
text-decoration: none;
-webkit-columns: ;
-moz-columns: ;
-o-columns: ;
color: white;
}
#examples a:hover
{
text-decoration: none;
}
a {
text-decoration: none;
}
@media (min-width: 768px) {
.modal-aj {
width: 90%;
max-width:1200px;
}
}
.modal > a ,a
{
color: black;
}
/*code
{
font-family: 'Istok Web', sans-serif;
}*/
.nav-pills .nav-link.active, .nav-pills .show>.nav-link
{
background-color: #22A7F0;
color: white;
}
.nav-pills .nav-link
{
border-radius: .25rem;
border: solid 0.5px grey;
margin:1px;
}
.modal-header
{
display: flex;
align-items: center;
justify-content: center;
}