-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
115 lines (96 loc) · 1.63 KB
/
stylesheet.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
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
body {
margin: 0;
font-family: "Marcellus", serif;
}
.header {
overflow: hidden;
padding: 20px 10px;
}
.header a{
float: left;
color: black;
text-align: center;
padding: 20px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
transition:300ms;
}
.header a.logo {
font-size: 25px;
font-weight: bold;
}
.header a:hover {
background-color: #ddd;
color: black;
}
.header-right {
float: right;
}
@media screen and (max-width: 500px) {
.header a {
float: none;
display: block;
text-align: left;
}
.header-right {
float: none;
}
}
.container {
position: relative;
text-align: center;
color: white;
}
.intro {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.DNDOnline {
display:flex;
flex-wrap: wrap;
justify-content: space-around;
margin:0 auto;
width: 80%;
}
.DNDOnline figure {
margin: 8px;
text-align: center;
}
.DNDOnline figure img {
width: 200px;
}
.DNDOnline figure figcaption {
font-size: 0.9em;;
}
.foot3 {
text-align: center;
}
.foot4 {
text-align: center;
}
.links {
display: flex;
justify-content: space-evenly;
}
.box {
flex-basis: 100%;
display: flex;
justify-content: center;
height: 50px;
align-items: center;
transition: 300ms;
}
.box a{
font-size: 0.9em;
text-align: center;
border-radius: 15px;
}
.box:hover {
background-color: #ddd;
color: black;
}