This repository was archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (96 loc) · 1.48 KB
/
style.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
:root{
--sub-color:#4B4B4B;
--main-text:#070707;
--bg-text:#A7A7A7;
}
.container{
max-width: 600px;
height: 100vh;
background: ;
display: flex;
flex-direction: column;
margin-left: 25%;
padding: 50px;
color:var(--main-text);
}
.container .title{
font-size: 2.5em;
}
.container .sub-title{
color: var(--sub-color);
}
.container span{
color: #d22400;
}
.container-2{
background: ;
margin-top: 10%;
}
.container-2 .inner-title{
font-weight: 700;
font-size: 1.5em;
}
.container-2 .sub-text{
color: var(--sub-color);
padding-top: 15px;
}
.container-2 .form-1 .nick{
width: 100%;
padding: 20px;
border-radius:30px;
outline:none;
border:1px solid black;
margin-top: 20px;
color:var(--bg-text);
font-size: 1em;
}
.container-2 .form-2{
margin-top: 10%;
}
.container-2 .form-2 select{
width: 100%;
font-size: 1em;
padding: 20px;
border-radius:30px;
outline:none;
border:1px solid black;
margin-top: 20px;
box-shadow: none;
background-image: none;
appearance: none;
overflow: hidden;
color: var(--bg-text);
}
.container-2 .form-2 select:hover{
cursor: pointer;
}
.container-2 .form-2 select::after{
content: '\25BC';
position: absolute;
top: 0;
right: 0;
padding: 0 1em;
}
.arrow{
bottom: 27%;
left:58%;
position: absolute;
}
.arrow:hover{
cursor: pointer;
}
.button{
margin-top:50px;
background: #000;
color: #fff;
font-weight: bold;
border-radius:15px;
width: 100%;
padding: 20px;
}