-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-style.css
112 lines (95 loc) · 1.77 KB
/
index-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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
body{
display: grid;
grid-template-rows: 3fr auto 2fr;
height: 100%; width: 100%;
margin: 0px 0px;
font-family: sans-serif;
}
a{
all: unset;
}
#header{
background-color: #2274A5;
min-height: 100px;
display: grid;
grid-template-columns: 1fr auto 1fr;
justify-content: space-between;
}
#main{
background-color: lightgray;
min-height: 100vh;
}
#footer{
background-color: #2274A5;
display: grid;
}
#footer-text{
color: lightgray;
justify-self: center; align-self: center;
font-size: 0.9rem;
}
#about{
display: grid;
justify-content: center;
align-items: center;
}
#list >*{
float: left;
display: block;
padding: 10px 10px;
margin: 10px 10px;
font-size: 1.3rem;
color:lightgray;
border-radius: 10px;
cursor: pointer;
}
#list >*:hover{
background-color: #154663;
}
#list{
list-style-type: none;
margin: 0; padding: 0;
}
#name{
display: block;
align-self: center; justify-self: center;
font-size: 3rem; font-weight: 900;
color: #154663;
}
#main{
display: grid;
grid-template-columns: 1fr 3fr 1fr;
}
.clickDiv{
justify-self: center;
align-self: center;
cursor: pointer;
}
.subtitle{
color: lightgray;
font-size: 2rem;
margin-top: 1rem;
justify-self: center;
font-weight: 1000;
text-align: center;
padding: 0 1rem;
}
.preview{
background-color: white;
border-radius: 20px;
width: 90%;
height: 90%;
justify-self: center;
align-self: center;
transition: all .3s ease-out;
}
.preview :hover{
all: inherit;
border-radius: 20px;
background-color: lightgray;
transform: scale(1.05);
}
.preview :not(:hover){
all: inherit;
transition: all .3s ease-out;
}