-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
129 lines (115 loc) · 2.11 KB
/
Copy pathstyle.css
File metadata and controls
129 lines (115 loc) · 2.11 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
html, body{
background-color:#141414;
margin: 0;
padding: 0;
}
.wrapper{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
background-color:#141414 ;
}
.container{
background-color:#1f1f1f;
margin:10% auto 10% auto;
width:auto;
padding: 40px 35px 10px 20px;
border-radius: 10px;
box-sizing: border-box;
height: auto;
}
.image img{
border-radius: 50%;
margin:0 38% 0 38%;
}
.content{
text-align: center;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.content h1{
font-size: 20px;
font-weight: normal;
letter-spacing: 1px;
color: #fff
}
.content p{
color:#c0e74d ;
font-size: small;
margin-top: -10px;
text-align: center;
}
p{
text-align: center;
color: #fff;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-weight: lighter;
padding:0 0 0 20px;
}
.inputs, button {
width:100%;
padding: 9px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
letter-spacing: 0.5px;
border-radius: 5px;
border: none;
color: white;
cursor:pointer;
}
button{
background-color: #313131;
}
.btn:hover{
background-color: #c3f62a;
color:#141414;
}
/* for tablet */
@media screen and (max-width:870px) {
.wrapper{
width:70%;
margin: 20px auto;
}
.container{
width:auto;
margin: 40px auto;
padding: auto;
height: auto;
}
p{
font-size: auto;
}
.btn{
margin: auto;
}
.btn:hover{
background-color: #c3f62a;
color:#141414;
}
}
/* for mobile */
@media screen and (max-width:480px) {
.wrapper{
width: 60%;
margin: 20px auto;
}
.container{
width: auto;
margin: 40px auto;
padding:auto;
height: auto;
}
img{
width:28%;
}
.content p{
font-size: 12px;
padding-right: 20px;
}
p{
font-size: small;
}
.input{
font-weight: 2px;
}
}