-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.css
More file actions
121 lines (106 loc) · 2.35 KB
/
join.css
File metadata and controls
121 lines (106 loc) · 2.35 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
113
114
115
116
117
118
119
120
121
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url("https://cdn.jsdelivr.net/npm/@xz/fonts@1/serve/hk-grotesk.min.css");
:root{
/* --color-background :#66C273;
--color-text: white; */
--color-background :white;
--color-text: black;
}
*{
box-sizing: border-box;
/* font-family: 'Roboto',sans-serif; */
font-family: 'HK Grotesk', sans-serif;
}
.container {
background-color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
/* overflow:scroll; */
}
.container-green {
background-color: var(--color-background);
width: 60%;
/* max-width: 340px; */
max-width: 90vw;
padding-top: 10vh;
padding-bottom: 10vh;
/* min-height: 450px; */
/* border: 0px; */
border-top: 8px solid var(--color-text);
border-bottom: 8px solid var(--color-text);
border-radius: 10px;
color: var(--color-text);
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
/* position: absolute; */
/* margin-bottom: 0px; */
overflow: visible;
}
.title{
font-weight: bold;
/* font-size: 2.1em; */
font-size: 10vw;
/* position: relative; */
/* bottom: 8%; */
}
.subtitle{
font-size: 8vw;
/* position: relative;
bottom: 5%; */
text-align: center;
margin-top: 3vh;
}
.dotted{
/* display: inline; */
margin-top: 5vh;
border-top: dotted var(--color-text) 2vw;
width: 30%;
}
.github{
display: flex;
align-items: center;
justify-content: center;
font-size: 15px;
/* position: relative;
top: 3%; */
/* background-color: var(--color-text); */
/* color: var(--color-background); */
border-radius: 5px;
padding: 0.2rem 1em;
text-decoration: none;
font-weight:700;
margin-top: 5vh;
border : 1px var(--color-text) solid;
color: var(--color-text);
}
img {
width: 3vw;
background-color: white;
/* border-radius: 10px ; */
margin-left: 10px;
}
.github:hover{
transform: scale(1.1);
cursor: pointer;
}
@media(min-width:500px){
.title{
font-size: 60px;
}
.subtitle{
font-size: 30px;
}
}
@media(max-width:500px){
.container-green{
width: 95vw;
}
.github{
font-size: 12px;
}
}