-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
94 lines (78 loc) · 1.42 KB
/
styles.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
body {
font-family: 'Playfair Display', serif;
text-align:center;
margin:0;
}
h2 {
font-size:2rem;
}
.flex {
display:flex;
}
.italic {
font-style: italic;
}
.bold {
font-weight:bold;
}
#hero-section {
background-image: url("https://64.media.tumblr.com/cf4d2f83a6b5cd74bcdfecab71b99d00/tumblr_mp7wf5nMyE1rdnwxgo1_1280.png");
background-size:cover;
background-position-y: center;
height:400px;
flex-direction:column;
justify-content: center;
align-items:center;
color:white;
}
#hero-cta {
background: #696f91;
padding:5px 10px;
border-radius:5px;
font-weight: bold;
font-size:2.5rem;
}
#hero-supp {
background:#F55887 ;
padding:5px 10px;
border-radius:5px;
font-weight: bold;
font-size:1.8rem;
}
#characters-section {
flex-direction:row;
padding:40px 0;
background:#e8f4ea;
}
#character-box {
justify-content: center;
align-items:center;
}
.character {
flex-direction:column;
padding:20px 50px;
width:300px;
}
.characters-img {
width:150px;
border-radius:50%;
margin:auto;
}
#card {
background:#696f91;
margin:100px auto;
width:600px;
padding:50px;
justify-content: space-between;
text-align:center;
flex-direction:row;
font-size:1.3rem;
border-radius:10px;
}
#card-img {
width:200px;
border-radius:10px;
}
#guide-description {
padding:20px 40px;
}