Skip to content

Commit 528796d

Browse files
committed
Update demo
1 parent b364f15 commit 528796d

165 files changed

Lines changed: 46653 additions & 3461 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

css/global.css

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ a:hover b {
3333
}
3434

3535
/* Space right of input */
36-
.page.header .menu .item:first-child {
37-
padding-left: 0em;
38-
}
3936
.page.header .menu .item .input {
4037
margin-right: 1em;
4138
}
@@ -123,11 +120,12 @@ a:hover b {
123120
Footer
124121
---------------*/
125122

126-
.footer.container {
123+
.footer .container {
127124
position: relative;
125+
margin-top: 60px;
128126
padding-bottom: 2.5em;
129127
}
130-
.footer.container .github.mark {
128+
.footer .container .github.mark {
131129
position: absolute;
132130
top: 50%;
133131
left: 50%;

css/layouts/home.css

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,20 +53,15 @@
5353
-----------------*/
5454

5555
#home .recent.message {
56-
padding: 7px 9px;
56+
padding: 10px;
5757
}
5858

59-
#home .latest.segment {
60-
padding: 0.35em 0.5em;
61-
color: #999999;
62-
}
63-
#home .latest.attached.segment {
64-
border-top: 1px solid #DDD;
65-
}
6659

6760
/* Clippy */
68-
#home .latest .clippy.icon {
61+
#home .recent .commit {
6962
float: right;
63+
}
64+
#home .recent .clippy.icon {
7065
margin-left: 5px;
7166
}
7267

@@ -109,6 +104,19 @@
109104
float: right;
110105
}
111106

107+
/*----------------
108+
Repo Title
109+
-----------------*/
110+
111+
#home .repo.title .input .button:first-child {
112+
border-radius: 3px 0px 0px 3px;
113+
}
114+
#home .repo.title .input .button + input {
115+
border-radius: 0px;
116+
border-left: none;
117+
}
118+
119+
112120
/*----------------
113121
Branch Dropdown
114122
-----------------*/

css/layouts/theme.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,9 @@
2020
.alternate.menu {
2121
display: none;
2222
}
23+
24+
/* small fix to avoid having to recenter buttons in each theme */
25+
.ui.labeled.button > .button {
26+
display: flex;
27+
align-items: center;
28+
}

css/ui/components/button.css

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
background: #FBFBFB linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.05));
2626
color: #333333;
2727
font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif;
28-
margin: 0em 0.25em 0em 0em;
28+
margin: 0em 0.23076923rem 0em 0em;
2929
padding: 0.53846154em 0.92307692em 0.53846154em;
3030
text-transform: none;
3131
text-shadow: none;
@@ -611,16 +611,16 @@
611611
---------------*/
612612

613613
.ui.button > .icon:not(.button) {
614-
height: 13px;
614+
height: 18px;
615615
opacity: 1;
616-
margin: 0em 0.30769231em 0em -0.15384615em;
616+
margin: 0em 0.07692308em 0em -0.03846154em;
617617
-webkit-transition: opacity 0.1s ease;
618618
transition: opacity 0.1s ease;
619619
vertical-align: '';
620620
color: '';
621621
}
622622
.ui.button > .right.icon:not(.button) {
623-
margin: 0em -0.15384615em 0em 0.30769231em;
623+
margin: 0em -0.03846154em 0em 0.07692308em;
624624
}
625625

626626

@@ -652,15 +652,15 @@
652652

653653
.ui.compact.buttons .button,
654654
.ui.compact.button {
655-
padding: 0.15384615em 0.76923077em 0.15384615em;
655+
padding: 0.30769231em 0.76923077em 0.30769231em;
656656
}
657657
.ui.compact.icon.buttons .button,
658658
.ui.compact.icon.button {
659-
padding: 0.15384615em 0.15384615em 0.15384615em;
659+
padding: 0.30769231em 0.30769231em 0.30769231em;
660660
}
661661
.ui.compact.labeled.icon.buttons .button,
662662
.ui.compact.labeled.icon.button {
663-
padding: 0.15384615em 2.84615385em 0.15384615em;
663+
padding: 0.30769231em 2.84615385em 0.30769231em;
664664
}
665665

666666
/*-------------------
@@ -3254,7 +3254,7 @@
32543254
flex-direction: row;
32553255
font-size: 0em;
32563256
vertical-align: baseline;
3257-
margin: 0em 0.25em 0em 0em;
3257+
margin: 0em 0.23076923rem 0em 0em;
32583258
}
32593259
.ui.buttons:not(.basic):not(.inverted) {
32603260
box-shadow: none;
@@ -3339,7 +3339,7 @@
33393339

33403340
.ui.compact.icon.buttons .button,
33413341
.ui.compact.icon.button {
3342-
padding: 0.15384615em 0.76923077em 0.15384615em;
3342+
padding: 0.30769231em 0.76923077em 0.30769231em;
33433343
}
33443344

33453345

css/ui/components/button.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/ui/components/container.css

Lines changed: 18 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
}
2323

2424
/* Mobile */
25-
@media only screen and (max-width: 767px) {
25+
@media only screen and (max-width: 1048px) {
2626
.ui.container {
2727
width: auto !important;
2828
margin-left: 1em !important;
@@ -40,56 +40,56 @@
4040
}
4141

4242
/* Tablet */
43-
@media only screen and (min-width: 768px) and (max-width: 991px) {
43+
@media only screen and (min-width: 1049px) and (max-width: 1048px) {
4444
.ui.container {
45-
width: 723px;
45+
width: 1006px;
4646
margin-left: auto !important;
4747
margin-right: auto !important;
4848
}
4949
.ui.grid.container {
50-
width: calc( 723px + 2rem ) !important;
50+
width: calc( 1006px + 2rem ) !important;
5151
}
5252
.ui.relaxed.grid.container {
53-
width: calc( 723px + 3rem ) !important;
53+
width: calc( 1006px + 3rem ) !important;
5454
}
5555
.ui.very.relaxed.grid.container {
56-
width: calc( 723px + 5rem ) !important;
56+
width: calc( 1006px + 5rem ) !important;
5757
}
5858
}
5959

6060
/* Small Monitor */
61-
@media only screen and (min-width: 992px) and (max-width: 1199px) {
61+
@media only screen and (min-width: 1049px) and (max-width: 1048px) {
6262
.ui.container {
63-
width: 933px;
63+
width: 993px;
6464
margin-left: auto !important;
6565
margin-right: auto !important;
6666
}
6767
.ui.grid.container {
68-
width: calc( 933px + 2rem ) !important;
68+
width: calc( 993px + 2rem ) !important;
6969
}
7070
.ui.relaxed.grid.container {
71-
width: calc( 933px + 3rem ) !important;
71+
width: calc( 993px + 3rem ) !important;
7272
}
7373
.ui.very.relaxed.grid.container {
74-
width: calc( 933px + 5rem ) !important;
74+
width: calc( 993px + 5rem ) !important;
7575
}
7676
}
7777

7878
/* Large Monitor */
79-
@media only screen and (min-width: 1200px) {
79+
@media only screen and (min-width: 1049px) {
8080
.ui.container {
81-
width: 1127px;
81+
width: 980px;
8282
margin-left: auto !important;
8383
margin-right: auto !important;
8484
}
8585
.ui.grid.container {
86-
width: calc( 1127px + 2rem ) !important;
86+
width: calc( 980px + 2rem ) !important;
8787
}
8888
.ui.relaxed.grid.container {
89-
width: calc( 1127px + 3rem ) !important;
89+
width: calc( 980px + 3rem ) !important;
9090
}
9191
.ui.very.relaxed.grid.container {
92-
width: calc( 1127px + 5rem ) !important;
92+
width: calc( 980px + 5rem ) !important;
9393
}
9494
}
9595

@@ -101,12 +101,12 @@
101101

102102
/* Text Container */
103103
.ui.text.container {
104-
font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
104+
font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif;
105105
max-width: 700px !important;
106106
line-height: 1.5;
107107
}
108108
.ui.text.container {
109-
font-size: 1.14285714rem;
109+
font-size: 1.15384615rem;
110110
}
111111

112112
/* Fluid */
@@ -137,12 +137,6 @@
137137
}
138138

139139

140-
/*******************************
141-
Theme Overrides
142-
*******************************/
143-
144-
145-
146140
/*******************************
147141
Site Overrides
148142
*******************************/

css/ui/components/container.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/ui/components/dropdown.css

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -423,17 +423,17 @@ select.ui.dropdown {
423423
.ui.selection.dropdown .menu > .message {
424424
padding: 0.61538462em 1.07692308em;
425425
}
426-
@media only screen and (max-width: 979px) {
426+
@media only screen and (max-width: 1048px) {
427427
.ui.selection.dropdown .menu {
428428
max-height: 6.99230769em;
429429
}
430430
}
431-
@media only screen and (min-width: 980px) {
431+
@media only screen and (min-width: 1049px) {
432432
.ui.selection.dropdown .menu {
433433
max-height: 9.32307692em;
434434
}
435435
}
436-
@media only screen and (min-width: 980px) {
436+
@media only screen and (min-width: 1049px) {
437437
.ui.selection.dropdown .menu {
438438
max-height: 13.98461538em;
439439
}
@@ -575,17 +575,17 @@ select.ui.dropdown {
575575
backface-visibility: hidden;
576576
-webkit-overflow-scrolling: touch;
577577
}
578-
@media only screen and (max-width: 979px) {
578+
@media only screen and (max-width: 1048px) {
579579
.ui.search.dropdown .menu {
580580
max-height: 6.99230769em;
581581
}
582582
}
583-
@media only screen and (min-width: 980px) {
583+
@media only screen and (min-width: 1049px) {
584584
.ui.search.dropdown .menu {
585585
max-height: 9.32307692em;
586586
}
587587
}
588-
@media only screen and (min-width: 980px) {
588+
@media only screen and (min-width: 1049px) {
589589
.ui.search.dropdown .menu {
590590
max-height: 13.98461538em;
591591
}
@@ -1066,19 +1066,19 @@ select.ui.dropdown {
10661066
min-width: calc(100% - 17px );
10671067
}
10681068
}
1069-
@media only screen and (max-width: 979px) {
1069+
@media only screen and (max-width: 1048px) {
10701070
.ui.scrolling.dropdown .menu,
10711071
.ui.dropdown .scrolling.menu {
10721072
max-height: 8.92307692em;
10731073
}
10741074
}
1075-
@media only screen and (min-width: 980px) {
1075+
@media only screen and (min-width: 1049px) {
10761076
.ui.scrolling.dropdown .menu,
10771077
.ui.dropdown .scrolling.menu {
10781078
max-height: 13.38461538em;
10791079
}
10801080
}
1081-
@media only screen and (min-width: 980px) {
1081+
@media only screen and (min-width: 1049px) {
10821082
.ui.scrolling.dropdown .menu,
10831083
.ui.dropdown .scrolling.menu {
10841084
max-height: 17.84615385em;

css/ui/components/dropdown.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/ui/components/form.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@
807807
}
808808

809809
/* Swap to full width on mobile */
810-
@media only screen and (max-width: 979px) {
810+
@media only screen and (max-width: 1048px) {
811811
.ui.form .fields {
812812
-webkit-flex-wrap: wrap;
813813
-ms-flex-wrap: wrap;
@@ -906,7 +906,7 @@
906906
}
907907

908908
/* Swap to full width on mobile */
909-
@media only screen and (max-width: 979px) {
909+
@media only screen and (max-width: 1048px) {
910910
.ui.form .two.fields > .fields,
911911
.ui.form .two.fields > .field,
912912
.ui.form .three.fields > .fields,

0 commit comments

Comments
 (0)