-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
104 lines (86 loc) · 1.37 KB
/
styles.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
html {
background: #FFFAED;
}
.topnav-centered {
width: 100%;
background-color: grey;
border-radius: 20px;
display: table;
clear: both;
overflow: hidden;
position: relative;
}
.culture-row {
height: 36%;
display: inline-flex;
position: absolute;
flex-direction: row;
flex-wrap: nowrap;
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
float: left;
margin-top: 1%;
padding-bottom: 2%;
}
.row {
display: flex;
margin-bottom: 22%;
}
.culture-title {
margin-top: 5%;
display: block;
position: relative;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
transition: 0.3s;
position: relative;
justify-content: center;
text-align: center;
border-radius: 20px;
display: block;
margin-right: 2%;
}
/* On mouse-over, add a deeper shadow */
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
nav {
display: block;
width: 60%;
margin: 0 auto;
}
.column {
float: left;
height: 100%;
width: 33.33%;
justify-content: center;
text-align: center;
border-radius: 20px;
display: flex;
right: 0;
top: 0;
}
.active {
background-color: black;
}
a {
font-family: Verdana;
color: White;
font-size: 20px;
display: inline;
padding: 4%;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}