-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (73 loc) · 1.24 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
body {
color: aliceblue;
background: linear-gradient(to top left, #0066ff 0%, #cc00ff 100%);
}
.nav-bar {
border: 4px rgb(200, 129, 250) double;
border-radius: 25px;
color:blue;
}
.nav-bar::after {
content: "";
clear: both;
display: table;
}
.page {
padding: 15px;
float: left;
}
.page::before {
content: "// ";
}
.logo {
float: left;
height: 50px;
border-radius: 25px;
border: #cc00ff;
position: relative;
/* overflow:scroll; */
}
.name {
position: absolute;
top: 15px;
width: 100%;
text-align: center;
font-size: 20px;
font-family: 'Courier New', Courier, monospace;
}
.nav-btn {
float: right;
height: 50px;
background-image: url(btn-bg.jpg);
border-radius: 25px;
border: #cc00ff;
/* box-shadow: #cc00ff; */
}
.container {
height: calc(3em + 4px);
}
.nav-sec {
padding: calc(1em + 2px);
width: 100vw;
}
a {
border: solid 1px transparent;
padding: 1em;
}
p {
margin: 3em;
clear: both;
}
a {
text-decoration: none;
}
nav {
margin-top: 8px;
clear: both;
position: sticky;
top: 8px;
background-color: #66ccff;
overflow: hidden;
scroll-behavior: smooth;
border-radius: 25px;
}