-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
117 lines (98 loc) · 2.29 KB
/
styles.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: sans-serif;
font-size: 62.5%;
width: 100%;
height: 100%;
background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}
main {
width: 100%;
height: 100%;
display: flex;
justify-content: space-evenly;
flex-flow: row wrap;
}
section {
flex: 1;
height: 350px;
max-width: 195px;
display: flex;
flex-direction: column;
align-items: center;
margin: 1rem;
border-radius: 5px;
}
.btn-container {
display: flex;
flex-direction: column;
border-top: 2px solid white;
padding-top: 1rem;
}
button {
background: none;
color: inherit;
border: none;
padding: 0;
font: inherit;
cursor: pointer;
outline: inherit;
}
button {
width: 60px;
height: 30px;
border-radius: 3px;
margin: .4rem;
font-size: 1rem;
color: rgb(46, 46, 46);
font-weight: bold;
background-image: radial-gradient( circle 867px at -5.8% 1.8%, rgba(255,255,255,1) 0%, rgba(7,0,216,1) 100.3% );
}
button:focus {
background: rgb(31, 31, 31);
color: #fafafa;
border: none;
outline: none;
border: 1px solid rgb(144, 144, 144);
}
h1, h2 {
text-align: center;
margin: 1rem;
}
h1 {
padding: .35rem 0;
font-size: 1.6rem;
color: #fafafa;
}
h2 {
color: #fafafa;
font-size: 1.3rem;
height: 50px;
display: flex;
align-items: center;
font-style: italic;
text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
0px 8px 13px rgba(0,0,0,0.1),
0px 18px 23px rgba(0,0,0,0.1);
}
section:nth-child(1) {
background-color: #a4508b;
background-image: linear-gradient(326deg, #a4508b 0%, #5f0a87 74%);
}
section:nth-child(2) {
background-image: linear-gradient(-20deg, #fc6076 0%, #c76a18 100%);
}
section:nth-child(3) {
background-image: linear-gradient(to top, #4481eb 0%, #0e8eb9 100%);
}
section:nth-child(4) {
background-image: linear-gradient(-225deg, #A445B2 0%, #D41872 52%, rgb(206, 52, 114) 100%);
}
section:nth-child(5) {
background-color: #90d5ec;
background-image: linear-gradient(315deg, #2899be 0%, #39bb7e 74%);
}