-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathachievements.css
124 lines (107 loc) · 2.47 KB
/
achievements.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
123
124
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Raleway", sans-serif;
}
html {
font-size: 62.5%;
font-family: "Raleway", sans-serif;
}
.global-padding {
padding: 40px 70px;
}
.vertical-padding {
padding: 40px 0;
}
.horizontal-padding {
padding: 0 70px;
}
#achievements-landing-page {
width: 100%;
background-image: url("./images/radial.png");
}
#achievements-landing-page .title {
font-size: 4.5rem;
font-weight: 700;
text-align: center;
background: #7f7fd5;
/* fallback for old browsers */
background: -webkit-linear-gradient(to left, #91eae4, #86a8e7, #7f7fd5);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #91eae4, #86a8e7, #7f7fd5);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
#achievements-table {
width: 100%;
background-color: black;
background-image: url("./images/radial.png");
}
#achievements-table table {
width: 100%;
padding: 10px;
text-align: left;
border: 3px solid #7f7fd5;
border-radius: 10px;
background-color: black;
margin-bottom: 80px;
}
#achievements-table tr:hover {
background-color: #212121;
}
#achievements-table th {
margin: 0 20px 0 20px;
height: 3rem;
font-size: 1.8rem;
padding: 30px;
color: #91eae4;
border: 2px solid #212121;
border-radius: 2px;
}
#achievements-table td {
margin: 0 20px 0 20px;
height: 3rem;
font-size: 1.4rem;
padding: 15px 30px 15px 30px;
color: white;
vertical-align: middle;
border: 2px solid #212121;
border-radius: 2px;
}
/* MOBILE VIEW */
@media only screen and (max-width: 768px) {
html {
background-color: black;
}
.global-padding {
padding: 40px 40px;
}
#achievements-landing-page {
width: 100%;
background-image: url("./images/bg.png");
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
#achievements-landing-page .title {
width: 100%;
position: absolute;
font-size: 4rem;
margin-left: auto;
margin-right: auto;
font-weight: 700;
text-align: center;
padding: none;
background: #7f7fd5;
/* fallback for old browsers */
background: -webkit-linear-gradient(to left, #91eae4, #86a8e7, #7f7fd5);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #91eae4, #86a8e7, #7f7fd5);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}