-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (87 loc) · 1.47 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
90
91
92
93
94
95
96
97
98
99
100
html {
box-sizing: border-box;
font-family: "Roboto", sans-serif;
height: 100%;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
background-image: url(img/pic2.jpg);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
height: 100%;
}
li,
ul {
list-style: none;
padding: 0;
margin: 0;
}
nav {
width: 100%;
border-bottom: solid 0.3rem rgb(25, 25, 25);
}
.logo {
text-align: center;
font-family: "Poller One", cursive;
font-size: 1.3rem;
margin-top: 1rem;
}
.siteTitle {
font-family: "Poller One", cursive;
}
.siteTitle,
.select {
text-align: center;
margin: 3rem;
opacity: 0.85;
}
.characterName {
font-size: 1.8rem;
text-align: center;
margin-bottom: 3rem;
}
.mainCardBody {
display: flex;
justify-content: space-around;
height: 100%;
margin: 0 6rem;
}
.characterCard,
.originCard,
.filmCard {
/* display: flex; */
flex-direction: column;
height: 100%;
background-color: aliceblue;
padding: 1rem;
border-radius: 25px;
line-height: 1.5rem;
font-size: 1.1rem;
opacity: 0.85;
}
h3 {
padding: 0;
margin-top: 0.3rem;
}
.cardInfo {
padding: 1.5rem;
border-radius: 25px;
border: solid 0.2rem rgb(25, 25, 25);
margin: 1rem;
}
.btn {
padding: 1rem 2rem;
font-family: "Poller One", cursive;
font-weight: 500;
font-size: 1.3rem;
border-radius: 25px;
border: solid 0.3rem rgb(25, 25, 25);
background-color: aliceblue;
cursor: pointer;
margin-bottom: 3rem;
}