-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
123 lines (109 loc) · 1.77 KB
/
styles.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
.panels {
display: flex;
flex-wrap: wrap;
}
@font-face {
font-family: 'Roboto'
src: url(https://fonts.googleapis.com/css?family=Roboto:400,300,500);
}
body {
font-family: 'Roboto', sans-serif;
margin-left, margin-right: 30px;
}
.content {
padding-left: 5%;
max-width: 95%;
}
.panel {
text-align: center;
margin-right: 5px;
margin-bottom:5px;
border-style: solid;
border-color: black;
padding: 20px;
min-width:200px;
flex-basis: content;
}
.longwidget {
width: 100%;
text-align: center;
margin-right: 5px;
margin-bottom:5px;
border-style: solid;
border-color: black;
padding: 20px;
border-radius:5px;
border-width:1px;
}
.widget {
width: 100%;
text-align: center;
margin-right: 5px;
margin-bottom:5px;
border-style: solid;
border-color: black;
padding: 20px;
border-radius:5px;
border-width:1px;
}
.smallwidget {
width: 100%;
text-align: center;
margin-right: 5px;
margin-bottom:5px;
border-style: solid;
border-color: black;
padding: 20px;
border-radius:5px;
border-width:1px;
}
.fortwo {
width: 100%;
margin-right: 5px;
display: flex;
flex-wrap: wrap;
flex-direction: column;
flex-grow:1;
max-height: 250px;
}
/* Typography */
h1 {
font-weight: 300;
font-size: 20pt;
flex: 1;
text-align: left;
margin-top: 15px;
}
h2 {
background-color: pink;
font-size: 150px;
}
h4 {
font-size: 20;
}
h5 {
padding-top: 10%;
font-size: 20;
font-weight: 500;
line-height: 2em;
}
h6 {
color: #666;
font-size: 14px;
}
@media screen and (min-width: 500px) {
.widget {
max-width: calc(50% - 5px);
}
.fortwo {
max-width: calc(50% - 5px);
}
}
@media screen and (min-width: 750px) {
.widget {
max-width: calc(25% - 5px);
}
.fortwo {
max-width: calc(25% - 5px);
}
}