login_page.css
1.55 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
@import url(http://fonts.googleapis.com/css?family=Oswald);
body{
margin: 0;
padding: 0;
background: blueviolet;
font-size: 16px;
font-family: sans-serif;
font-weight: 300;
}
.sign-box {
position: absolute;
left: 0;
right: 0;
margin-top: 80px;
margin-left: auto;
margin-right: auto;
box-sizing: border-box;
padding: 90px;
width: 400px;
height: 500px;
background-image : url(../images/back2.jpg);
background-size: cover;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.navbar .nav {
color: #8eb640;
font-family: 'Roboto Condensed', sans-serif;
font-weight: normal;
margin-left: 100px;
text-align: left;
font-size: 40px;
font-weight: 300;
font-family: Gugi
}
a.title1:hover, a.title1:focus {
text-decoration: none;
color: #222;
}
.navbar {
height: 75px;
box-sizing: border-box;
background: blueviolet;
}
.sign-box .signingwith{
display: block;
margin-bottom: 40px;
font-size: 28px;
color: #ffffff;
text-align: center;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
button.social
{
margin-bottom: 20px;
margin-right: 20px;
width: 220px;
height: 36px;
border: none;
border-radius: 2px;
color: rgb(255, 255, 255);
font-family: 'Roboto Condensed', sans-serif;
font-weight: normal;
transition: 0.2s ease;
cursor: pointer;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.google {
background: rgb(47, 175, 255);
}
.kakao {
background: rgb(233, 229, 28);
}
.naver {
background: rgb(79, 250, 79);
}