-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfeatured.css
65 lines (54 loc) · 873 Bytes
/
featured.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
body, select, input, textarea {
font-family: 'Roboto';
}
.header {
position: absolute;
right: 20px;
top: 20px;
}
#user-pic {
background-repeat: no-repeat;
width: 40px;
height: 40px;
background-size: cover;
border-radius: 20px;
display: inline-block;
vertical-align: middle;
}
div {
padding: 5px;
flex-grow: 1;
}
.header #user-pic {
padding: 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
margin: 20px ! important;
}
.button {
font-size: 16px;
padding: 5px 15px;
border: 1px solid #555;
border-radius: 3px;
margin: 5px;
user-select: none;
cursor: pointer;
}
input, textarea {
padding: 10px;
}
.featured {
margin-top: 50px;
display: flex;
justify-content: space-between;
}
.featured .button, header .button {
display: inline-block;
}
.card {
cursor: pointer;
}
.card:hover {
background: #ddd;
}