forked from Midway91/HactoberFest2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (121 loc) · 2.19 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
*{
margin: 0;
padding: 0;
font-family: 'Baloo Bhaijaan 2', cursive;
font-family: 'Ubuntu', sans-serif;
}
body{
background: rgba(100, 102, 99, 0.904);
}
.header>h1{
text-align: center;
margin: 20px 0 20px 0;
font-size: 40px;
}
.Enrollement{
display: flex;
flex-direction: column;
margin: 40px 10px;
padding: 10px;
}
.Enrollement>input{
padding: 10px;
margin: 15px 10px;
border-radius: 5px;
border: none;
outline: none;
}
label{
font-size: 18px;
}
.name{
display: flex;
}
.custom-file-input::-webkit-file-upload-button {
visibility: hidden;
}
.custom-file-input::before{
content: 'Select Image';
display: inline-block;
background: white;
border-radius: 8px;
padding: 12px;
outline: none;
cursor: pointer;
border: none;
width: 50%;
}
.gender,.skills{
display: flex;
align-items: center;
margin: 10px 0px;
}
p{
margin-right: 10px;
}
input[type=radio],input[ type=checkbox]{
transform: scale(1.3);
margin: 10px 10px;
}
.skills>label,.gender>label{
padding: 0px 10px;
}
.btn{
display: flex;
align-items: center;
justify-content: center;
}
.button{
border: none;
outline: none;
cursor: pointer;
border-radius: 5px;
margin: 10px 20px;
width: 25%;
text-align: center;
padding: 10px;
color: white;
background: rgb(61, 59, 59);
}
.button:active{
transform: translateY(4px);
}
.parts{
display: flex;
}
.part1{
width: 50%;
}
.part2{
display: flex;
flex-direction: column;
align-items: center;
width: 50%;
}
.vl {
border-left: 6px solid black;
min-height: 88.5vh;
}
.Enrolled{
margin-top: 2rem;
}
.card{
display: flex;
justify-content: center;
align-items: center;
margin: 4rem;
border: 5px solid black;
padding: 20px;
text-align: center;
}
.image>img{
width: 150px;
margin: 15px;
}
.title{
font-size: 22px;
margin: 7px;
}
.text{
margin: 10px;
}