-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (96 loc) · 1.68 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
html, body {
background: #0A5880;
font-family: "Titillium Web";
text-align: center;
color: white;
text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}
#container {
width: 80%;
margin: 0 auto;
text-align: left;
}
#logo {
display: inline-block;
width: 50px;
height: 50px;
margin-right: 10px;
}
h1 {
font-family: "Montserrat";
font-size: 60px;
width: auto;
display: inline-block;
}
form {
text-align: right;
}
textarea {
width: 100%;
height: 120px;
padding: 20px;
background: rgba(255, 255, 255, 0.95);
box-sizing: border-box;
border: 1px solid #49AFE3;
font-family: "Titillium Web";
border-radius: 5px;
font-size: 25px;
box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}
input {
margin-top: 5px;
width: 50%;
padding: 15px;
text-align: center;
background: rgba(255, 255, 255, 0.2);
box-sizing: border-box;
color: white;
border: none;
font-family: "Montserrat";
border-radius: 5px;
font-size: 25px;
box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
cursor: pointer;
}
input:hover {
background: rgba(255, 255, 255, 0.3);
}
.story {
padding: 20px;
background: rgba(255, 255, 255, 0.7);
box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
font-size: 25px;
border-radius: 5px;
font-family: "Titillium Web";
border: 1px solid #49AFE3;
color: #00314A;
text-shadow: none;
margin-top: 20px;
}
.story .score{
float: left;
width: auto;
font-family: "Montserrat";
font-size: 30px;
font-weight: bold;
color: rgba(255, 255, 255, 0.7);;
background: #3284AD;
border-radius: 5px;
margin-right: 20px;
padding: 10px;
line-height: 30px;
}
.story .score i {
opacity: 0.5;
cursor: pointer;
}
.story .score i:hover {
opacity: 0.8;
}
.story .time {
font-size: 15px;
opacity: 0.5;
}
.clear {
clear: both;
}