-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
63 lines (60 loc) · 1.17 KB
/
main.css
File metadata and controls
63 lines (60 loc) · 1.17 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Inter", sans-serif;
text-decoration: none;
}
html, body{
width: 100%;
height: 100%;
}
:root{
--primaryColor: black;
--secondaryColor: white;
}
.container{
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 24px;
background: var(--primaryColor);
}
.container > .paraWrapper{
background: var(--secondaryColor);
display: flex;
flex-direction: column;
gap: 12px;
padding: 20px;
border-radius: 10px;
width: 50vw;
#para{
color: var(--primaryColor);
font-weight: normal;
font-size: 17px;
}
}
button#btn{
outline: none;
border: 1px solid;
width: fit-content;
padding: 10px 8px;
background: green;
color: var(--secondaryColor);
border-radius: 8px;
cursor: pointer;
font-size: 18px;
}
.active{
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
display: -webkit-box;
}
@media (width < 680px) {
.container > .paraWrapper{
width: 90vw;
}
}