-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
75 lines (67 loc) · 1.4 KB
/
main.css
File metadata and controls
75 lines (67 loc) · 1.4 KB
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
body {
background-image: url("https://i.pinimg.com/originals/bb/ec/f5/bbecf573f0e42591cdc6f4eeb2bb15de.gif");
background-size: 140%;
background-repeat: no-repeat;
}
.topBar {
color: azure;
text-align: center;
padding: 0;
margin: 0;
margin-top: 10px;
}
.site-title {
font-weight: bold;
font-family: 'Balsamiq Sans', cursive;
margin: 0;
padding: 0;
}
form {
margin: 40px 500px;
background-color: rgba(255, 255, 255, 0.7);
border-radius: 20px;
padding: 20px;
}
.cards {
display: flex;
flex-flow: row wrap;
justify-content: space-evenly;
float: center;
margin: 40px 100px;
overflow-y: auto;
scrollbar-width: none;
height: 360px;
width: 90%;
background-color: rgba(255, 255, 255, 0.7);
border-radius: 20px;
padding: 20px;
}
.bear-card {
border: solid black 3px;
margin: 20px 40px 40px 40px;
padding: 0;
width: 200px;
height: 240px;
box-shadow: 5px 5px black;
border-radius: 25px;
text-align: center;
color: rgb(47, 53, 59);
}
.bear-card img {
width: 100%;
height: 186px;
margin: 0;
padding: 0;
border-radius: 20px 20px 0px 0px;
border-bottom: solid black;
}
.bear-card h1 {
text-align: center;
background-color: darkgreen;
margin: 0;
padding: 0;
}
.bearName {
border-radius: 0px 0px 20px 20px;
margin: 0;
}