-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
80 lines (61 loc) · 1.13 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
img{
width: 100%;
}
.intro_section{
/* background-color: #555; */
height: 500px;
margin: 20px 40px 0 40px;
}
.intro_section > img{
width: 100%;
height: inherit;
object-fit: cover;
}
.content{
margin-top: 20px;
padding: 10px;
margin-bottom: 30px;
}
.flex{
display: flex;
justify-content: center;
}
.flex-child{
background-color: white;
margin-right: 15px;
width: 300px;
box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}
.flex-child > h1{
font-weight: lighter;
font-size: 22px;
margin-bottom: 20px;
padding-left: 10px;
}
.flex-child > img{
height: 250px;
}
.flex-child > .btn-wrapper{
width: 200px;
height: 30px;
background-color: #555;
margin: auto;
margin-top: 15px;
margin-bottom: 10px;
}
.flex-child > .btn-wrapper > button{
width: inherit;
height: inherit;
border: none;
border: 1px solid rgba(0, 0, 0, 0.2);
}
.flex-child > .btn-wrapper > button:hover{
transition: all 700ms ease-in-out;
background-color: crimson;
color: #e1e1e1;
}