-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
122 lines (119 loc) · 2.36 KB
/
Copy pathstyle.css
File metadata and controls
122 lines (119 loc) · 2.36 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
122
* {
box-sizing: border-box;
}
html {
font-family: 'Jost', sans-serif;
padding: 0;
}
ul {
list-style: none;
margin-block-start: 0;
margin-block-end: 0;
padding-inline-start: 0;
}
body {
margin: 0;
background-color: rgba(0, 0, 0, 0.021);
}
.app {
margin: 0;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
width: 100%;
}
.app h1 {
font-size: 30px;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
margin-bottom: 100px;
}
.container h2 {
margin-bottom: 50px;
}
.btn {
padding: 14px 25px;
font-size: 16px;
background-color: rgb(0, 161, 224);
cursor: pointer;
border: 2px solid rgb(0, 161, 224);
color: #fff;
transition: .4s;
border-radius: 10px;
}
.btn:hover {
background-color: #fff;
color: rgb(25, 189, 230);
transform: translateY(-5px);
}
.container_textFields {
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr;
justify-items: center;
align-items: center;
margin: 20px 0 100px 0;
}
.textfield {
width: 450px;
height: 400px;
box-shadow: 0px 6px 7px -1px rgba(0,0,0,0.26);
border-radius: 10px;
padding: 15px 20px;
border: 1px solid rgba(0,0,0,0.22);
transition: .3s;
}
.textfield:focus-visible {
border: 2px solid rgb(5, 172, 5);
outline: none
}
.skulist {
width: 70%;
padding: 20px 30px;
border-radius: 10px;
box-shadow: 0px 6px 7px -1px rgba(0, 0, 0, 0.26);
background-color: #fff;
border: 1px solid rgba(0,0,0,0.22);
max-height: 300px;
min-height: 400px;
overflow: scroll;
overflow-x: hidden;
}
.container_btn {
width: 400px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.nav {
width: 100%;
background-color: rgb(0, 161, 224);
color: #fff;
text-align: center;
box-shadow: 0px 6px 15px -2px rgba(0,0,0,0.3);
margin-bottom: 70px;
}
.container_finished {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
width: 100%;
justify-items: center;
margin-bottom: 100px;
}
.container_finished-blocks {
width: 100%;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
}
.text-red {
color: red;
}