-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
141 lines (134 loc) · 2.69 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
@import url('https://fonts.googleapis.com/css2?family=Quicksand:[email protected]&display=swap');
* {
font-family: 'Quicksand', sans-serif;
}
body {
background-color: #1c1c1c;
padding-bottom: 6vw;
}
h1 {
font-weight: 700;
text-decoration: underline;
}
p {
padding: 0.8rem;
font-weight: 600;
font-size: 1.1rem;
}
a:link, a:visited {
color: #aa7bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.container {
color: white;
width: 89vw;
text-align: center;
border: 0.3vw solid;
border-image: linear-gradient(180deg, #5BCEFA 20%, #F5A9B8 20%, 40%, #FFFFFF 40%, 60%, #F5A9B8 60%, 80%, #5BCEFA 80%);
border-image-slice: 1;
margin: 1rem;
}
.information {
display: grid;
grid-template-columns: 100%;
justify-content: center;
}
.footer {
background-color: #1c1c1c;
display: grid;
grid-template-columns: repeat(5, 4%);
position: fixed;
left: 0;
bottom: 0;
height: 6vw;
width: 100%;
color: white;
border-top: 0.3vw solid;
border-image: linear-gradient(90deg, #5BCEFA 20%, #F5A9B8 20%, 40%, #FFFFFF 40%, 60%, #F5A9B8 60%, 80%, #5BCEFA 80%);
border-image-slice: 1;
gap: 2vh;
p {
text-align: end;
color: #7a7979;
position: fixed;
right: 0;
bottom: -2vw;
width: 17ch;
font-size: 2vw;
}
a {
color: #7a7979;
text-decoration: underline;
}
}
.icons.grid-container {
display: grid;
grid-template-columns: repeat(6, 1fr);
margin-left: 30%;
}
.icon-container {
position: relative;
width: 6.7vh;
top: 4%;
aspect-ratio: 1;
img {
width: 6vw;
}
}
#pc-specs > .grid-container {
display: grid;
grid-template-columns: repeat(2, auto);
margin-left: 1rem;
}
#pc-specs > h1 {
padding: 1rem;
text-decoration: underline;
color: #aa7bff;
font-size: 2rem;
width: 100%;
}
#pc-specs > .grid-container > p > span {
font-size: 1.5rem;
font-weight: 700;
text-decoration: underline;
}
.footer {
margin-top: 1rem;
}
@media only screen and (min-width: 1000px) {
body {
padding-bottom: 6vh;
}
.information {
grid-template-columns: repeat(2, 47.5%);
}
.container {
width: 43vw;
}
.footer {
height: 6vh;
gap: 0;
p {
position: absolute;
width: 17ch;
right: 0;
font-size: 2vh;
bottom: -2vh
}
}
.icon-container {
img {
transition-duration: 100ms;
width: 50px
}
}
.icon-container:hover {
top: -3%;
img {
width: 60px;
}
}
}