-
Notifications
You must be signed in to change notification settings - Fork 181
/
style.css
128 lines (111 loc) · 2.14 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
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #ecf0f1;
font-family: 'Nunito', sans-serif;
}
.container {
height: 100vh;
display: grid;
grid-template-columns: 3fr 2fr 1fr;
grid-template-rows: 1fr 1fr 3fr;
}
.user-container {
align-self: start;
grid-row: 1;
grid-column: 1;
font-size: 25px;
background-color: #3498db;
padding: 1vmax;
box-shadow: 1px 1px 3px black;
border-bottom-right-radius: 4px;
}
.user-info {
color: #ecf0f1;
display: inline-block;
vertical-align: middle;
}
#profile-pic {
display: inline-block;
width: 100px;
height: 100px;
border-radius: 50%;
background-size: 100%;
vertical-align: middle;
}
.quote-container {
grid-row: 2;
grid-column: 1 / 3;
font-size: 1.5vmax;
text-align: left;
color: #2c3e50;
padding: 1vmax;
font-family: 'Indie Flower', cursive;
}
.quote-container>p {
font-family: 'Nunito', sans-serif;
font-size: 1vmax;
}
.content-container {
grid-row: 3;
grid-column: 1 / 3;
display: grid;
grid-template-columns: minmax(200px, 70vw);
align-self: start;
}
.friends {
grid-row: 3;
grid-column: 3;
background-color: #3498db;
font-size: 1.5vmax;
color: #ecf0f1;
border-top-left-radius: 4px;
box-shadow: -1px -1px 3px black;
padding-left: 1vmax;
}
ul {
list-style-type: none;
}
.buttons {
position: fixed;
bottom: 1vw;
left: 1vw;
}
button {
width: 200px;
height: 50px;
border-radius: 6px;
background-color: #27ae60;
color: #ecf0f1;
font-size: 1vmax;
cursor: pointer;
}
#gen-page:focus {
outline: none;
}
#pokemon-image {
width: 150px;
height: 150px;
display: inline-block;
background-size: 100%;
justify-self: center;
}
#pokemon-text {
vertical-align: middle;
}
.pokemon-container {
font-size: 20px;
padding: 1vw;
display: grid;
grid-template-columns: minmax(150px, 150px) minmax(200px, 400px);
align-items: center;
justify-self: baseline;
border-bottom: 1px solid #2c3e50;
}
.meat-text {
padding: 1vw;
font-size: 1vmax;
}