forked from khyeborg/responsive_design
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (33 loc) · 666 Bytes
/
style.css
File metadata and controls
38 lines (33 loc) · 666 Bytes
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
body{
background-color: #2D3242;
color: white;
font-family: Helvetica;
text-align: center;
display:flex;
flex-direction: column;
}
h1 {
font-size: 40px;
padding: 10px;
}
.card_container{
display: flex;
flex-direction: row;
}
img {
width: 75%;
}
.card{
width: 33%;
margin: 15px;
padding: 25px;
border-left: 1px solid #B1D7FE;
border-right: 1px solid #B1D7FE;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
transition: border 500ms;
}
.card:hover{
border-top: 1px solid #B1D7FE;
border-bottom: 1px solid #B1D7FE;
}