-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
154 lines (132 loc) · 2.43 KB
/
index.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
h1 a, h2 a, h3 a, h5 a, h6 a {
color: inherit;
text-decoration: none;
border: 0;
}
h1 {
font-family: "Verdana", sans-serif;
font-size: 40px;
font-style: normal;
font-weight: 400;
text-align:center;
color: black;
letter-spacing: 4px;
align-items: left;
}
h2 {
font-size: 1.65em;
font-weight: 400;
letter-spacing: 4px;
margin: 0 0 .25em 0;
line-height: 2.75em;
color: white;
}
h3 {
font-size: 1.3em;
font-weight: 600;
letter-spacing: 2px;
margin: 0 0 .20em 0;
line-height: 2.75em;
color: black;
}
h4 {
font-family: 'Source Sans Pro';
font-weight: 300;
color: rgb(63, 62, 62);
font-size: 1.25em;
letter-spacing: 2px;
margin: 0 0 1.25em 0;
}
h5 {
font-family: 'Source Sans Pro';
font-weight: 600;
color: grey;
font-size: 1.25em;
letter-spacing: 2px;
margin: 0 0 1.25em 0;
}
a {
text-decoration:none;
border-bottom: solid 1px #ddd;
color: black;
font: black;
font-size: 25px;
}
body {
background-color: orange;
margin-left: 50px;
margin-right: 50px;
}
hr {
border: 0;
border-top: solid 2px rgb(0, 0, 0);
}
li {
font-family: 'Source Sans Pro';
font-weight: 300;
color: #777;
font-size: 1em;
letter-spacing: 2px;
margin: 0 0 1.25em 0;
text-indent: 20px;
color:rgb(0, 0, 0)
}
#header-img {
width: 50%;
height: 50%;
}
#header-container {
display: auto;
}
.navbar-container a {
margin-right: 20px;
}
img {
width:250px;
height:250px;
margin: auto;
}
.button {
transition-duration: 0.4s;
background-color: white;
color: black;
border: 2px solid blue;
padding: 16px 32px;
text-align: center;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 4px;
}
.button:hover {
background-color: blue;
color: white;
}
.card {
text-align: center;
padding: 1rem;
width: 350px;
height: 550px;
margin: 1rem 2rem;
box-shadow: 3px 4px blue;
background-color: #add8e6;
transition: all 1s linear;
position: absolute;
align-items: stretch;
justify-items: start;
}
#characters-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
background-color: orange;
height: 100%;
width: 100%;
}
.text-muted {
font-size: 25px;
}
.center {
border: 5px solid rgb(41, 41, 233);
text-align: center;
}