-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPubg.css
More file actions
138 lines (127 loc) · 2.59 KB
/
Pubg.css
File metadata and controls
138 lines (127 loc) · 2.59 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
h1 {
color: black;
font-style: italic;
font-family: 'Righteous', cursive;
text-align: center;
}
.span {
color: yellow;
}
body {
background-image: url("Pubg.jpg");
background-size: cover;
}
.Sign_up {
width: 500px;
box-shadow: 3px 3px 5px 6px rgb(44, 43, 43);
background: white;
padding: 20px;
margin: 8% auto 0;
text-align: center;
}
#password {
border-radius: 20px;
padding: 10px;
margin: 10px 0;
width: 90%;
border: 1px solid #999;
outline: none;
}
#number {
border-radius: 20px;
padding: 10px;
margin: 10px 0;
width: 90%;
border: 1px solid #999;
outline: none;
}
.full_name {
border-radius: 20px;
padding: 10px;
margin: 10px 0;
width: 90%;
border: 1px solid #999;
outline: none;
}
.email {
border-radius: 20px;
padding: 10px;
margin: 10px 0;
width: 90%;
border: 1px solid #999;
outline: none;
}
button {
border-radius: 20px;
padding: 10px;
margin: 10px 0;
width: 40%;
border: 1px solid #999;
outline: none;
cursor: pointer;
}
.Submit {
background-color: rgb(243, 138, 1);
color: black;
}
img {
width: 70px;
}
.Submit:hover{
background-color: rgb(95, 238, 95);
opacity: 1;
}
.Submit:active{
color: white;
}
.footer{
float: right;
background: white;
}
* {
box-sizing: border-box;
margin: auto;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
/* Float four columns side by side */
.column {
float: left;
width: 25%;
padding: 100px 30px;
}
/* Remove extra left and right margins, due to padding in columns */
.row {margin: 0 -5px;}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Style the counter cards */
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
padding: 16px;
text-align: center;
background-color: #f1f1f1;
}
/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 600px) {
.column {
width: 100%;
display: block;
margin-bottom: 20px;
}
}
h2{
text-align: center;
background-color: gray;
border-radius: 5px;
margin: 20px;
padding: 30px;
color: white;
font-family: Georgia, 'Times New Roman', Times, serif;
font-style: italic;
font-size: 2em;
}