-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintdes-style.css
More file actions
112 lines (82 loc) · 1.49 KB
/
intdes-style.css
File metadata and controls
112 lines (82 loc) · 1.49 KB
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
@import url('https://fonts.googleapis.com/css2?family=Rubik+Doodle+Shadow&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');
* {
box-sizing: border-box;
}
body {
font-family: "Source Code Pro", monospace;
font-size: 10px;
display: flex;
flex-direction: column;
margin: 2rem 2rem auto;
background-color: #252422;
color: #ccc5b9;
align-items: center;
}
header {
width: 80%;
border-bottom: 2px solid grey;
padding-bottom: .4rem;
margin-bottom: 3rem;
}
a {
color: #eb5e28;
}
h1 {
font-family: "Rubik Doodle Shadow", system-ui;
line-height: normal;
margin: 0;
font-size: 3.5rem;
padding-top: 2rem;
}
header h2 {
font-size: 1rem;
margin:0;
padding-top:1rem;
}
h3 {
font-size: 2rem;
font-weight: 400;
margin: 0;
padding-top: .5rem;
margin-bottom: -.4rem;
}
p,
li,
form {
font-size: 1rem;
}
.flex-2 {
display: flex;
justify-content: flex-start;
align-items: flex-start;
flex-wrap: wrap;
gap: 2rem;
}
section {
display: flex;
align-items: flex-start;
width: 80%;
}
.flex-2 div {
background-color: #211f1d;
padding: 1.5rem 2rem 2rem;
transition: box-shadow .05s;
flex: 1;
}
.flex-2 div:hover {
box-shadow: 0px 0px 10px #c25b32;
}
a:hover {
color: #ccc5b9;
}
@media (max-width:768px) {
h1 {
font-size: 2.5rem;
}
h2 {
font-size: 1.5rem;
}
h3 {
font-size: 1.5rem;
}
}