-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuntext.css
106 lines (93 loc) · 1.48 KB
/
funtext.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
body {
margin: 0;
padding: 0;
background-color: #dcdcdc;
}
#container {
margin: 20px auto;
text-align: center;
min-width: 350px;
width: 70%;
min-height: 300px;
height: auto;
background-color: #fff;
border-radius: 15px;
border: 1px solid #bbb;
box-shadow: 3px 3px 1px #888;
}
h1 {
margin-top: 50px;
font-size: 48px;
color: #555;
font-family: Helvetica;
min-width: 350px;
}
#name, #title {
display: inline-block;
vertical-align: baseline;
}
#name {
font-weight: normal;
font-size: 40px;
color: #777;
margin-right: 10px;
}
#modes_container {
margin-top: 20px;
width: 100%;
}
.option_button {
display: inline-block;
vertical-align: top;
margin-right: 50px;
margin-bottom: 10px;
font-family: Helvetica;
font-weight: normal;
font-size: 36px;
color: #888;
background-color: #ddd;
border: none;
cursor: pointer;
width: 220px;
padding: 5px;
outline: none;
border-radius: 10px;
}
.option_button:hover {
color: #555;
background-color: #ddd;
}
.option_button.selected {
color: #ddd;
background-color: #555;
}
#input {
margin-top: 5%;
font-size: 48px;
border: none;
padding: 10px;
width: 80%;
text-align: center;
outline: none;
color: #999;
border-bottom: 1px solid #555;
}
#output_container {
margin-top: 100px;
}
#output {
margin: 50px auto;
font-size: 48px;
color: #333;
text-align: center;
padding: 0 25px;
word-wrap: break-word;
}
#footer_container {
width: 100%;
}
#copyright_notice {
margin: 0 auto;
text-align: center;
font-style: italic;
}