-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
110 lines (99 loc) · 2.15 KB
/
styles.css
File metadata and controls
110 lines (99 loc) · 2.15 KB
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
model-viewer {
/* min-width: 100%; */
width: 800px;
height: 600px;
margin: 0 auto;
background-image: url('background.svg');
}
body{
background-image: url('background.svg');
}
.nav-title{
width: 650px;
height: auto;
}
.hero {
/* background: url('./pages/landing-page/img/background1.png'); */
background-size: cover;
padding: 4rem 2rem;
/* Grid styles */
display: grid;
align-items: center;
/* this is the same as grid-template-rows: 300px 300px; it will create 2 columns with minmax() calculating
automatically the size of the track, based on the width of the viewport,
*/
/* auto-fit keyword allows us to wrap our columns into rows when there’s not enough space in our viewport to fit the 240px minimum value without overflowing the content. */
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.title{
font-family: ocr-a-std,monospace;
font-weight: 400;
font-style: normal;
text-align: center;
}
nav {
display: flex;
width: 100%;
height: 12%;
/* background: #eee; */
position: fixed;
z-index: 9999999;
align-items: center;
justify-content: center;
overflow: hidden;
}
p{
color:#E0FF77;
font-size:25px;
}
a {
text-decoration: none;
margin: 0 50px;
}
button{
border: 2px;;
border-color: #E0FF77;
color: #E0FF77;
background-color: #000B39;
border-width: think;
cursor: pointer;
border-style: solid;
text-shadow: 1px 1px 2px #E0FF77;
box-shadow: 1px 1px 2px #E0FF77;
border-radius: 12px;
font-size: 30px;
width: 200px;
}
.about{
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
height: auto;
}
button:hover{
color: #00D3BB;
text-shadow: 1px 1px 2px #00D3BB;
box-shadow: 1px 1px 2px #00D3BB;
border-color: #00D3BB;
}
.logo{
width: 80px;
animation: rotation 15s infinite linear;
}
.logo:hover{
animation: rotation 20s infinite linear;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}