-
Notifications
You must be signed in to change notification settings - Fork 2
/
style2.css
144 lines (131 loc) · 2.39 KB
/
style2.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
html {
scroll-behavior: smooth;
}
h5,
h6 {
font-family: "Lato", sans-serif;
}
.w3-bar,
h1,
button {
font-family: "Montserrat", sans-serif;
}
.fa-anchor,
.fa-coffee {
font-size: 200px;
}
.home {
background-color: white;
width: 100%;
height: 100%;
}
.home22 {
align: center;
}
#pre {
margin-left: -50px;
}
.topnav {
overflow: hidden;
}
ul {
list-style: none; /* Remove default bullets */
}
ul li::before {
content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
color: rgb(241, 160, 174); /* Change the color */
font-weight: bold; /* If you want it to be bold */
display: inline-block; /* Needed to add space between the bullet and the text */
width: 1em; /* Also needed for space (tweak if needed) */
margin-left: -1em; /* Also needed for space (tweak if needed) */
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.active {
background-color: black;
color: black;
}
.navbar {
overflow: hidden;
background-color: #e91e63;
position: fixed;
top: 0;
width: 100%;
}
.topnav .icon {
display: none;
background-color: #e91e63;
}
@media screen and (max-width: 600px) {
.topnav a:not(:first-child) {
display: none;
}
.topnav a.icon {
background-color: #e91e63;
float: right;
display: block;
}
}
@media screen and (max-width: 600px) {
.topnav.responsive {
position: relative;
}
.topnav.responsive .icon {
position: absolute;
background-color: #e91e63;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
background-color: #e91e63;
color: black;
display: block;
text-align: left;
}
}
.column1 {
float: left;
width: 30%;
padding: 0 30px;
margin: 10px;
padding-left: 10px;
padding-right: 10px;
}
/* Remove extra left and right margins, due to padding */
.row1 {
margin: 0 10px;
}
/* Clear floats after the columns */
.row1:after {
content: "";
display: table;
clear: both;
}
/* Responsive columns */
@media screen and (max-width: 600px) {
.column1 {
width: 100%;
display: block;
margin-bottom: 20px;
}
}
/* Style the counter cards */
.card1 {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
padding: 16px;
text-align: center;
background-color: #f1f1f1;
box-sizing: border-box;
}