-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (75 loc) · 1.31 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
@font-face {
font-family: "edosz";
src: url("res/fonts/edosz.ttf");
}
body {
background-image: url("res/images/bgImage.png");
background-size: 70%;
color: black;
font-family: sans-serif;
margin: 0px;
padding: 0px;
align-items: center;
justify-content: center;
}
body header nav a {
font-family: "edosz";
}
body header nav a:hover {
background-color: gold;
}
body header .bannerImage2 {
background-image: url("res/images/banner2.png");
background-size: 100% 28vw;
background-repeat: no-repeat;
}
body header #banner-img {
height: 28vw;
width: 100%;
}
body h1,
body h2,
body h3 {
font-family: "edosz";
}
footer {
color: rgb(255, 255, 255);
background-color: #181818;
text-align: center;
margin: 0px;
padding: 0px;
align-items: center;
justify-content: center;
opacity: 0.9;
}
.no-bullets {
list-style-type: none;
}
.no-decor {
text-decoration: none;
}
.w100 {
width: 100%;
}
#siteMapGroup .list-group-item {
width: 30%;
background-color: #404040;
}
#siteMapGroup .list-group {
font-weight: bold;
align-items: center;
}
.cardButton {
transform: scale(1);
transition: transform 1s;
}
.cardButton:hover {
transform: scale(1.3);
transition: transform 2s;
}
.border-dashed {
border-style: dashed !important;
}
.border-dotted {
border-style: dotted !important;
}