-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
104 lines (87 loc) · 1.59 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
* {
box-sizing: border-box;
}
body {
margin: 0;
background-color: #232323;
font-family: Verdana, Geneva, Tahoma, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
}
img {
max-width: 100%;
border-radius: 4px;
}
a:hover,
a:focus {
outline: 4px solid #488f7d;
}
header {
position: absolute;
top: 0;
width: 100%;
display: flex;
flex-direction: column;
background: #010101;
margin-bottom: 2em;
box-shadow: 0px 5px 50px black;
}
.grid-img {
border: 1px solid black;
height: 40px;
}
.reverse {
transform: rotate(180deg);
}
h1 {
margin: 0;
background: #232323;
color: #48BF7D;
font-size: 3vw;
padding: 1rem;
border-radius: 8px;
border: 2px double #48BF7D;
text-shadow: 2px 2px 2px #010101;
text-align: center;
}
.solution-link {
display: block;
width: max-content;
color: #dedede;
margin-top: 0.5em;
margin-bottom: 1em;
text-align: center;
padding: 0.3em 0.9em;
}
#main-container {
margin-top: 15em;
display: grid;
gap: 0 2em;
padding: 1em;
}
.placeholder {
max-width: 400px;
height: 300px;
background: #343434;
border-radius: 8px;
box-shadow: 5px 5px 10px #121212;
}
.solution-img {
width: 100%;
height: 100%;
}
@media (min-width: 600px) {
header {
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.grid-img {
width: 25vw;
height: 20vh;
}
#main-container {
grid-template-columns: repeat(3, 1fr);
}
}