forked from servo/servo-starters
-
Notifications
You must be signed in to change notification settings - Fork 1
/
site.css
121 lines (102 loc) · 1.71 KB
/
site.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
body {
padding: 10px 50px;
}
h1 {
color: #2196f3;
}
a {
color: #e91e63;
text-decoration: none;
font-weight: bold;
}
a:hover {
border-bottom: 3px solid #ffeb3b;
}
#content {
max-width: 768px;
margin: 0 auto;
}
#issues {
list-style-type: none;
margin: 0;
padding: 0;
}
#issues li {
margin-bottom: 20px;
}
.labels {
margin-top: 0;
}
.label:first-child {
margin-left: 0;
}
.label {
display: inline-block;
color: white;
font-weight: bold;
font-size: 9px;
padding: 4px 8px;
margin: 5px;
border-radius: 3px;
}
#loading {
width: 75px;
height: 75px;
animation: rotation 2s infinite linear;
background-repeat: no-repeat;
background-image: url(images/rust-logo.png);
background-size: contain;
text-align: center;
margin: 20px auto;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
h2 {
border-bottom: 3px solid;
padding-bottom: 10px;
}
.view-all {
text-align: center;
font-style: italic;
color: #2196f3;
padding: 10px;
}
.view-all:hover {
cursor: pointer;
background-color: #eee;
}
.button {
display: block;
background-color: #4caf50;
color: white;
font-weight: bold;
margin: 0 auto;
padding: 10px 15px;
cursor: pointer;
border: none;
border-radius: 5px;
transition: 300ms;
}
.button:hover {
background-color: #ffeb3b;
transform: scale(1.1);
transition: 300ms;
color: black;
}
.time-wrapper {
border-bottom: #CAC7C7 solid 1px;
padding-bottom: 5px;
}
.time {
font-size: 0.75em;
color: rgba(140, 139, 139, 0.77);
}
.language-picker {
text-align: center;
}