-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
76 lines (64 loc) · 1.19 KB
/
styles.css
File metadata and controls
76 lines (64 loc) · 1.19 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
76
body {
font-family: RobotoDraft, sans-serif;
color: #333;
background: #F6F6F6;
margin: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-touch-callout: none;
}
paper-tabs, core-toolbar {
background-color: #00bcd4;
color: #fff;
box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2);
}
core-toolbar paper-tabs {
box-shadow: none;
}
#container {
width: 80%;
height: 100%;
padding: 60px;
}
#container .welcome {
font-size: 3.6rem;
font-weight: 500;
}
#container .sub {
margin-top: 60px;
font-size: 1.8rem;
font-weight: 300;
}
#container .message {
margin-top: 100px;
}
#container .card {
display: inline-block;
background: white;
box-sizing: border-box;
width: 100%;
height: 270px;
margin: 16px;
padding: 16px;
border-radius: 2px;
}
#container .card img {
float: left;
height: 230px;
width: 230px;
}
#container .card h2 {
margin-left: 260px;
font-weight: 300;
font-size: 2.4rem;
}
#container .card p {
margin-left: 260px;
margin-top: -16px;
}
#container .card paper-icon-button {
float: right;
}