質問編集履歴
1
cssの追加
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -83,3 +83,39 @@
|
|
|
83
83
|
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
+
```css
|
|
87
|
+
/* ON NAVBAR */
|
|
88
|
+
.on-navbar {
|
|
89
|
+
text-align: center;
|
|
90
|
+
height: 10vh;
|
|
91
|
+
display: flex;
|
|
92
|
+
justify-content:center;
|
|
93
|
+
position: relative;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.on-navbar button {
|
|
97
|
+
position: fixed;
|
|
98
|
+
right: 10px;
|
|
99
|
+
bottom: 10vh;
|
|
100
|
+
border: 1px solid #0277D7;
|
|
101
|
+
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.display-none {
|
|
105
|
+
display: none;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
/* --------------------------------- */
|
|
111
|
+
|
|
112
|
+
/* NAVBAR */
|
|
113
|
+
|
|
114
|
+
nav {
|
|
115
|
+
background-color: #0277D7;
|
|
116
|
+
min-height: 15vh;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
```
|
|
121
|
+
|