-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
115 lines (100 loc) · 1.73 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 62.5%;
font-family: 'Roboto', sans-serif;
}
.form-container {
border-radius: 1rem;
box-shadow: 12px 7px 20px 6px rgb(57 75 84 / 8%);
padding: 3rem 2rem;
width: 80vw;
max-width: 50rem;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
.form-container h1 {
color: cadetblue;
text-transform: uppercase;
text-align: center;
margin-bottom: 1rem;
}
.main-label {
display: block;
margin-bottom: .3rem;
}
.main-input {
border: none;
outline: none;
border-bottom: 1px solid plum;
margin-bottom: 1rem;
padding: 1rem .5rem;
height: 4rem;
width: 100%;
}
.main-label, .sub-text {
font-size: 1.4rem;
font-weight: 700;
}
.sub-text {
margin-bottom: 1rem;
}
.sub-label {
font-size: 1.4rem;
}
.checkbox-wrapper {
margin-bottom: .7rem;
}
.main-checkbox {
margin-right: .8rem;
}
.btn {
border: none;
border-radius: .4rem;
background-color: #E530D9;
color: #fff;
cursor: pointer;
outline: 0;
padding: 1rem 2rem;
margin: 1rem 0;
font-weight: 700;
text-transform: uppercase;
width: 40%;
opacity: .8;
transition: all .4s ease;
}
.btn:hover {
opacity: 1;
transform: scale(1.05);
}
button {
background-color: cyan;
border: none;
border-radius: 1rem;
font-weight: 700;
font-size: 1rem;
outline: none;
padding: .5rem;
margin: .5rem;
}
table {
border-collapse: collapse;
border-spacing: 100px 0;
width: 100%;
table-layout: fixed;
word-wrap: break-word;
}
th {
height: 2rem;
text-align: left;
font-size: 1.2rem;
padding: 1rem;
}
td {
padding: 1rem;
}