-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (118 loc) · 2.4 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
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
/*font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;*/
}
:root {
--outer-margin: 10px;
--inner-margin: 5px;
--border-radius: 15px;
--main-bg-color: #1B262C;
--main-texts-color: #0F4C75;
--main-header-color: #3282B8;
--main-text-color: white;
}
body {
font-family: 'Roboto Mono', monospace;
background-color: var(--main-bg-color);
color: white;
}
h2{
color: var(--main-header-color);
}
/*p, h3 {
color: white;
}*/
.story-line {
border-left: 6px dotted green;
height: 100px;
margin: auto;
width: fit-content;
}
section {
margin-top: 10px;
margin-bottom: 10px;
}
.navbar {
background-color: var(--main-bg-color) !important;
}
.navbar-toggler {
color: var(--main-text-color) !important;
}
.nav-link {
color: var(--main-text-color) !important;
}
.navbar-brand {font-size: 30px !important;}
.hero {
height: fit-content;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-color: var(--main-texts-color);
padding-top: 70px;
}
.main {
padding-top: 70px;
}
.hero-prof {
color: black;
width: 300px;
}
.hero-img {
width: 200px;
height: auto;
}
.btn-third, .btn-third:hover {
color: white;
border: 1px solid white;
border-radius: var(--border-radius);
border-width: 2px;
}
.card-icon {
width: 100px;
height: 100px;
background-color: #fff;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
border-radius: 20px;
padding: 25px;
margin: auto;
}
/*CARD SYSTEM */
.card {
background-color: #88FF94 !important;
border: 1px solid #006742;
border-radius: var(--border-radius);
border-width: 2px;
}
.card-img-top {
border-radius: var(--border-radius);
}
.product-img {
max-height: 700px;
height: auto;
width: 600;
object-fit: contain;
}
/*DIALOG*/
dialog {
background-color: #1E222D;
color: white;
border: 1px solid white;
border-width: 2px;
border-radius: var(--border-radius);
padding: 10px;
margin: auto;
min-width: 300px;
width: 80%;
}
dialog > h2 {
text-align: center;
}
dialog::backdrop {
background-color: rgba(112, 112, 112, 0.2);
}
/*Table*/
table {
color: white;
}