-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (73 loc) · 1.47 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
body {
background: #fafafa;
font-family: "Roboto", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.header{
position: -webkit-sticky;
position: sticky;
top: 0;
background: #fafafa;
box-shadow: 0 20px 20px #fafafa;
font-weight: 650;
font-size: 2em;
padding: 40px;
padding-bottom: 30px;
}
.logout {
transition: 0.5s;
float: right;
padding: 10px;
background: white;
border: none;
border-radius: 5px;
color: gold;
font-size: 0.8em;
font-weight: 600;
cursor: pointer;
}
.logout:hover {
transition: 0.5s;
margin-right: -2px;
margin-top: 2px;
color: white;
background: gold;
}
.content {
width: 90%;
margin: auto;
margin-top: 100px;
}
.card {
width: 250px;
max-width: 90%;
float: left;
margin: 30px;
background: white;
border-radius: 5px;
overflow: hidden;
}
.card_image {
width: 100%;
height: 250px;
background-image: url("link.png");
background-size: contain;
border-radius: 5px 5px 0 0;
}
.card_footer {
padding: 15px;
border-radius: 0 0 5px 5px;
background-color: lightslategrey;
box-shadow: 0 -10px 10px 5px lightslategrey;
}
.card_link {
color: white;
text-decoration: none;
font-weight: 800;
}
.footer {
height: 300px;
margin-top: 100px;
background-image: url("link.png");
float: left;
width: 100%;
}