-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
161 lines (139 loc) · 2.6 KB
/
style.css
File metadata and controls
161 lines (139 loc) · 2.6 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,700;1,200&display=swap');
* {
color: #555;
background-color: #FFF;
transition: all 0.2s ease-out;
align-items: center;
text-siz;
}
input[type=text] {
padding: 5px 15px;
border: 1px solid #AAA;
border-radius: 2px;
outline: none;
}
.outer-box {
width: 100vw;
height: 100vh;
background: linear-gradient(to top , #3eff65,rgb(244, 241, 241), #bc5011);
}
.inner-box {
width: 500px;
margin: 0 auto;
position: relative;
top: 50%;
transform: translateY(-50%);
padding: 20px 40px;
background: linear-gradient(to top left, rgb(194, 160, 160), #decfcf33);
backdrop-filter: blur(8px);
border-radius: 8px;
box-shadow: 2px 2px 5px #2773a5;
z-index: 2;
}
.rows {
padding-bottom: 5px;
}
.rows label {
width: 220px;
display: inline-block;
}
button {
border: 1px solid #AAA;
padding: 5px 15px;
border-radius: 4px;
outline: none;
}
button:hover {
background-color: #F0F0F0;
}
button:active {
background-color: #F9F9F9;
}
th,td {
border: solid #CCC;
border-width: 1px 0 0 1px;
padding: 2px 5px;
}
th {
background-color: #F0F0F0;
}
td.true {
color: green;
}
td.false {
color: red;
}
tr:hover td {
background-color: #F0F0F0;
}
table {
border: solid #CCC;
border-width: 0 1px 1px 0;
margin-top: 10px;
}
/* * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Nunito', sans-serif;
}
.signup-header h1 {
font-size: 2.5rem;
color: #212121;
}
.signup-header p {
font-size: 1.2rem;
color: rgb(29, 28, 28);
margin-top: 5px;
}
.signup-body {
margin: 20px 0;
}
.signup-body p {
margin: 10px 0;
}
.signup-body p label {
display: block;
font-weight: bold;
}
.signup-body p input {
width: 100%;
padding: 10px;
border: 2px solid #cccc;
border-radius: 4px;
font-size: 1rem;
margin-top: 4px;
}
.signup-body p input[type="submit"] {
background-color: #3498db;
border: none;
color: white;
cursor: pointer;
}
.signup-body p input[type="submit"]:hover {
background-color: #2773a5;
}
.signup-footer p {
color: #555;
text-align: center;
}
.signup-footer p a {
color: #2773a5;
}
.circle {
width: 200px;
height: 200px;
border-radius: 150px;
background: linear-gradient(to top left, #ffffff33, #ffffffff);
position:absolute;
}
.c1 {
top: 100px;
left: 30%;
}
.c2 {
bottom: 200px;
right: 40%;
} */