-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_old.css
More file actions
123 lines (111 loc) · 2.5 KB
/
index_old.css
File metadata and controls
123 lines (111 loc) · 2.5 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
111
112
113
114
115
116
117
118
119
120
121
122
123
@import url('https://fonts.googleapis.com/css2?family=Chilanka&family=Dancing+Script:wght@500&family=Inconsolata:wght@500&family=Lobster+Two:ital@1&family=Quicksand:wght@500&display=swap');
/* font-family: 'Chilanka', cursive;
font-family: 'Dancing Script', cursive;
font-family: 'Inconsolata', monospace;
font-family: 'Lobster Two', cursive;
font-family: 'Quicksand', sans-serif; */
:root{
--primary-color: #50684D; /* var(--primary-color);*/
--background-color: grey; /* var(--background-color); */
--border-color: #3D583C; /* var(--border-color); */
}
body{
background-color: var(--background-color);
margin:0;
/* height: 100%; */
}
h1{
margin:0;
text-align: center;
font-family: 'Lobster Two', cursive;
color: lightgrey;
}
p{
font-family: 'Quicksand', sans-serif;
margin:16px;
}
a{
font-family: 'Quicksand', sans-serif;
color: lightgrey;
text-decoration: none;
transition:text-shadow 0.75s linear 0s;
/* transition:color 0.75s linear 0s; */
}
a:hover{
font-family: 'Chilanka', cursive;
color: white;
text-shadow: 2px 2px var(--border-color);
transition:color 0.75s linear 0s;
}
img {
margin: 4%;
}
button{
text-align: center;
font-size: 20px;
font-family: 'Chilanka', cursive;
color: lightgrey;
background-color: var(--primary-color);
padding: 17px;
border:0;
border-radius:50px;
-moz-border-radius:50px;
-webkit-border-radius:50px;
}
.container{
background-color: #EEEEEE77;
padding: 5px;
border-radius: 24px;
}
.banner{
background-color: var(--primary-color);
background-attachment: fixed;
background-position: top center;
background-repeat: no-repeat;
background-size: cover;
}
.row{
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 2%;
}
.column{
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
padding: 2%;
}
.toolbar{
position: sticky;
top:7px;
margin: 7px;
height: 45px;
background-color: var(--primary-color);
/* border-color: var(--border-color);
border-width: 5px; */
border-radius: 50px;
display: flex;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
}
.toolbar > * {
padding:0 5px;
margin:0 5px;
}
.toolbar > a > p{
color: lightgrey;
font-family:'Chilanka', cursive;
font-size: 20px;
}
.four0four{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height:100%;
background:linear-gradient(0deg, rgb(80, 104, 77) 3%, rgb(128, 128, 128) 100%);
}