-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (81 loc) · 1.58 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
body{
background-color:rgb(247, 171, 209);
color:black;
font-style:oblique;
font-size:20px;
}
.heading{
color:rgb(1, 3, 19);
background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT2CkxGyEAPYi0NRrvuYkEHOGS6qYz74RBVOw&usqp=CAU');
padding:80px;
font-size:20px;
font-weight:500;
font-style:oblique;
}
.name{
background-color:lightblue;
height:150px;
width:500px;
padding:30px;}
}
.font-clr{
color:blue;
}
.box{
position:absolute;
top:20%;
left:50%;
transform:translate(-50%,30%);
border:4px solid black;
border-radius:40px;
width:300px;
height:325px;
text-align:center;
font-size:20px;
font-family:Arial, Helvetica, sans-serif;
font-weight:100;
font-style:italic;
color:red;
}
.text-field{
padding:10px 30px;
margin:20px 0;
border:2px solid green;
border-radius:8px;
font-size:12pt;
color:green;
}
.btn-style:{
padding:8px 30px;
border:1px solid green;
border-radius:20px;
background-color:white;
color:red;
}
.btn-style:hover{
background-color:blue;
color:white;
}
.an-btn{
margin-top:10px;
border:0;
background-color:aquamarine;
color:red;
font-size:12pt;
}
.an-btn:hover{
background-color:yellow;
color:red;
}
#register-div{
display:none;
}
#result-box{
display:none;
position:absolute;
top:36%;
left:50%;
transform:translate(-1%,1%);
font-size:16pt;
color:brown;
}