-
Notifications
You must be signed in to change notification settings - Fork 0
/
nickname.css
88 lines (76 loc) · 1.27 KB
/
nickname.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
88
* {
box-sizing: border-box;
}
div {
box-sizing : border-box;
}
a {
margin-left : 20px;
font-size : 20px;
text-decoration: none;
color : black;
}
.wrapper {
width : 800px;
height : 50px;
margin-top : 10px;
border-radius : 20px;
display : flex;
flex-direction: row;
align-items: center;
justify-content: center;
background-color: blanchedalmond;
}
.contentFrame {
width : 800px;
display : flex;
flex-direction: column;
}
.subtitle {
width : 800px;
font-size : 24px;
font-weight: 700;
margin-bottom : 10px;
}
.content{
width : 800px;
font-size : 18px;
margin-bottom : 10px;
}
img {
padding-left : 20px;
height : 500px;
}
.makeNick {
display : flex;
flex-direction: column;
align-items: center;
}
.nickname {
font-size : 25px;
font-weight : 700;
}
.inputName {
margin-top : 20px;
width : 200px;
height : 50px;
border-radius: 20px;
text-align : center;
}
.save {
margin-top : 5px;
width : 200px;
height : 50px;
border-radius: 20px;
background-color: aquamarine;
font-weight : 900;
}
.Line {
width : 800px;
border : 1px solid grey;
margin-top : 10px;
margin-bottom : 10px;
}
.date {
text-align: right;
}