Skip to content

Commit 24816c5

Browse files
committed
change link color
1 parent 879633d commit 24816c5

File tree

5 files changed

+37
-15
lines changed

5 files changed

+37
-15
lines changed

data/conf.json

+27
Original file line numberDiff line numberDiff line change
@@ -13154,6 +13154,33 @@
1315413154
"num_sub": 258
1315513155
},
1315613156
"note": "From external source"
13157+
},
13158+
{
13159+
"year": 2011,
13160+
"ordinal": "18th",
13161+
"location": "San Diego, California, USA",
13162+
"main_track": {
13163+
"num_acc": 46,
13164+
"num_sub": 258
13165+
}
13166+
},
13167+
{
13168+
"year": 2010,
13169+
"ordinal": "17th",
13170+
"location": "San Diego, California, USA",
13171+
"main_track": {
13172+
"num_acc": 46,
13173+
"num_sub": 258
13174+
}
13175+
},
13176+
{
13177+
"year": 2009,
13178+
"ordinal": "16th",
13179+
"location": "San Diego, California, USA",
13180+
"main_track": {
13181+
"num_acc": 46,
13182+
"num_sub": 258
13183+
}
1315713184
}
1315813185
]
1315913186
},

index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</script>
3030
</head>
3131

32-
<body class="min-h-screen flex flex-col items-center bg-gray-100 text-gray-800">
32+
<body class="min-h-screen flex flex-col items-center text-gray-1000 bg-gray-100">
3333

3434
<header class="py-6 mt-6 mb-4">
3535
<div class="container mx-auto flex items-center space-x-4">
@@ -259,7 +259,7 @@
259259
<dt>Where you get the data?</dt>
260260
<dd>Mostly from the conference proceedings. Otherwise, I searched the web.</dd>
261261
<dt>Are the data accurate?</dt>
262-
<dd>Most should be correct when they are from the proceedings. Otherwise, errors may exist, and corrections are welcome if you find some.</dd>
262+
<dd>Most should be correct when they are from the proceedings. Otherwise, I will search the web and try to find at least two sources both validating the data, and if not, I didn't include it and record it <a href="https://github.com/Xovee/cs-conf-stats/blob/879633df100020a104e927c9fe1e692948df7cf8/If-You-Know.md" target="_blank">here</a>. Errors may exist, corrections are welcome if you find some.</dd>
263263
<dt>Are the data complete?</dt>
264264
<dd>No. There are many conference, and some of them have more than 30+ years of history. I am continually working on that. I try to make sure there are at least five years of recent data. Contributions are welcome.</dd>
265265
<dt>What if the conference has multiple tracks?</dt>

output.css

+3-11
Original file line numberDiff line numberDiff line change
@@ -659,10 +659,6 @@ video {
659659
display: block;
660660
}
661661

662-
.inline-block {
663-
display: inline-block;
664-
}
665-
666662
.flex {
667663
display: flex;
668664
}
@@ -679,8 +675,8 @@ video {
679675
height: 2.5rem;
680676
}
681677

682-
.h-\[1000px\] {
683-
height: 1000px;
678+
.h-\[1200px\] {
679+
height: 1200px;
684680
}
685681

686682
.h-\[450px\] {
@@ -695,10 +691,6 @@ video {
695691
height: 800px;
696692
}
697693

698-
.h-\[1200px\] {
699-
height: 1200px;
700-
}
701-
702694
.min-h-screen {
703695
min-height: 100vh;
704696
}
@@ -915,7 +907,7 @@ video {
915907

916908
a {
917909
--tw-text-opacity: 1;
918-
color: rgb(0 64 152 / var(--tw-text-opacity));
910+
color: rgb(26 13 171 / var(--tw-text-opacity));
919911
}
920912

921913
a:hover {

src/input.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
a {
7-
@apply text-uestc hover:underline
7+
@apply text-google hover:underline
88
}
99

1010
p {
@@ -29,7 +29,7 @@ select option {
2929
}
3030

3131
.conf-card {
32-
@apply bg-white shadow-md rounded-lg px-5 py-4 m-3 flex-1 min-w-[200px] max-w-[800px] md:min-w-[400px]
32+
@apply shadow-md rounded-lg px-5 py-4 m-3 flex-1 min-w-[200px] max-w-[800px] md:min-w-[400px] bg-white
3333
}
3434

3535
.conf-card-title {

tailwind.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ module.exports = {
99
},
1010
uestc_orange: {
1111
DEFAULT: '#F08300'
12+
},
13+
google: {
14+
DEFAULT: '#1A0DAB'
1215
}
1316
}
1417
},

0 commit comments

Comments
 (0)