-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (75 loc) · 1.2 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
88
89
body {
background-color: #000000;
color: #43f00a;
}
#logo {
max-width: 10%;
height: auto;
}
#sticker {
width: 20%;
max-width: 100px;
}
#sticker:hover {
transform: scale(2);
}
.blinky {
animation-name: blinky;
animation-iteration-count: infinite;
animation-duration: 5s;
}
.cool {
width: 55%;
margin: auto;
text-align: center;
font-family: 'Source Code Pro', monospace;
color: #43f00a;
}
.stuff {
border-style: solid;
text-align: center;
font-family: 'Source Code Pro', monospace;
margin: auto;
width: 55%;
}
.stuff h1 {
padding-left: 5%;
}
.stuff p {
padding-left: 3%;
padding-right: 3%;
}
.navbar {
display: inline-grid;
grid-template-columns: 33% 33% 33%;
border-style: solid;
border-color: #43f00a;
}
.wrapper {
justify-content: center;
align-content: center;
width: 55%;
display: grid;
grid-template-columns: 25% 25% 25% 25%;
border-bottom: solid #43f00a;
border-left: solid #43f00a;
}
.wrapper > div {
text-align: center;
border-top: 1px solid #43f00a;
border-right: 1px solid #43f00a;
}
.wrapper a {
color: rgb(248, 7, 196);
}
@keyframes blinky {
0% {
opacity: 1;
}
50% {
opacity: 0.1;
}
100% {
opacity: 1;
}
}