-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
123 lines (102 loc) · 2.3 KB
/
style.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
body{
min-height: 100vh; /*sized according to browser*/
display: flex; /*stretch across*/
justify-items: center; /*horizontal alignment*/
align-items: center; /*vertical alignment*/
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
text-transform: capitalize;
font-variant: small-caps;
}
.cont{
border: 10px dashed rgba(0,0,0,0.3);
border-radius: 7px;
padding: 40px;
margin: 20px;
text-align: center;
width: 80%;
height: 450px;
}
.colorBtn{
padding: 0.25em 0.5em;
border: none;
color: black;
background: rgba(0,0,0,0);
font-size: 0.85rem;
font-variant: none;
cursor: pointer;
outline: none;
margin-bottom: 0;
}
.colorBtn:hover{
background: rgba(0, 0, 0, 0.09);
}
.container{
justify-content: right;
display: block;
text-align: center;
color: rgba(0,0,0,0.5);
}
.hexColor{
font-size: 15px;
font-variant: normal;
text-transform: none;
margin-top: 2px;
}
.hex{
font-size: 15px;
}
blockquote{
background-color:none;
border-left: 10px solid white;
border-right: 10px solid white;
border-top-right-radius: 7px;
border-bottom-right-radius: 7px;
border-top-left-radius: 7px;
border-bottom-left-radius: 7px;
margin: 5px;
padding:10px;
text-transform: none;
}
#quoteAuthor{
text-decoration: overline;
}
#submitQuote{
text-decoration: overline;
}
.submitBtn{
display: block;
font-size: 1rem;
margin:1rem auto;
padding: 0.4rem 0.5rem;
background: rgba(116, 116, 116, 0.1);
border: none;
}
.submitBtn:hover{
text-decoration: underline;
cursor: pointer;
background: rgba(255, 255, 255, 0.2);
}
.cont2{
margin: 40px;
font-size: 10px;
text-align: center;
}
.cont2 input{
padding: 0.5rem;
margin: 1rem;
border-top-right-radius: 7px;
border-bottom-left-radius: 7px;
border:1px solid black;
outline: none;
width: 250px;
}
.cont2 input:nth-child(3){
height: 100px;
}
.cont2 input[type=text]:focus{
box-shadow: 0 0 5px white;
}
#messageOut{
margin:0.5rem 0;
color:#88d5e9;
}